eq24_make_gamma_vec.Rd
Competitive ability depends on "an intrsince age-,sex- and condition(habitat)-specific competitive factor gamma and the number of birds in each class" (Runge and Mara, 2004; page 380, column 2). THis function calculates gammas for each class of birds based on gamma.base provided in function call. Currently competitiveness for winter habitat is primarily determined by age and the habitat a bird originated (source vs. sink). Changing gamma.base decreases the competitiveness of females relative to males.
eq24_make_gamma_vec(gamma.base = 2)
gamma.base | Base competition value of females relative to males. Higher values make females LESS competitive. |
---|
gamma.i Vector of competiveness values for each class of birds
Note: breeding K is based on pairs,winter K is based on individuals.
# Default relative competitiveness is that males = females gamma.1 <- eq24_make_gamma_vec() # Make females more competitive than males gamma.1.2 <- eq24_make_gamma_vec(gamma.base = 1.2) data.frame(gamma.1, gamma.1.2) #> gamma.1 gamma.1.2 #> 1 1.00 1.00000000 #> 2 0.10 0.10000000 #> 3 0.01 0.01000000 #> 4 0.50 0.83333333 #> 5 0.05 0.08333333 #> 6 0.20 0.20000000 #> 7 0.01 0.01000000 #> 8 0.10 0.16666667 #> 9 0.01 0.01000000