eagles                 package:MASS                 R Documentation

_F_o_r_a_g_i_n_g _E_c_o_l_o_g_y _o_f _B_a_l_d _E_a_g_l_e_s

_D_e_s_c_r_i_p_t_i_o_n:

     Knight and Skagen collected during a field study on the foraging
     behaviour of wintering Bald Eagles in Washington State, USA data
     concerning 160 attempts by one (pirating) Bald Eagle to steal a
     chum salmon from another (feeding) Bald Eagle.

_A_r_g_u_m_e_n_t_s:

       y: Number of successful attempts. 

       n: Total number of attempts. 

       P: Size of pirating eagle (`L' = large, `S' = small). 

       A: Age of pirating eagle (`I' = immature, `A' = adult). 

       V: Size of victim eagle (`L' = large, `S' = small). 

_F_o_r_m_a_t:

     The `eagles' data frame has 8 rows and 5 columns.

_S_o_u_r_c_e:

     Knight, R. L. and Skagen, S. K. (1988) Agonistic asymmetries and
     the foraging ecology of Bald Eagles. Ecology, 69, 1188-1194.

_E_x_a_m_p_l_e_s:

     data(eagles)
     eagles.glm <- glm(cbind(y, n-y) ~ P*A + V, data=eagles, family=binomial)
     dropterm(eagles.glm)
     prof <- profile(eagles.glm)
     plot(prof)
     pairs(prof)

