Home Range Size in Field Voles
VoleDispersal.RdHome range size size in field voles (Microtus agrestis).
Format
A data frame with 5 observations on the following 3 variables.
- homeranges
 a numeric vector
- count
 a numeric vector
- sex
 a factor with levels
femaleandmale
Source
Sandell, M., J. Agrell, S. Erlinge, and J. Nelson. 1991. Adult philopatry and dispersal in the field vole Microtus agrestis. Oecologia 86: 153-158.
Examples
xtabs(count~sex+homeranges,VoleDispersal)
#>         homeranges
#> sex       0  1  2
#>   female 75 12  2
#>   male   48  8  0
barchart( xtabs(count~sex+homeranges,VoleDispersal), origin=0, auto.key=TRUE)
barchart(count~sex+homeranges,VoleDispersal, origin=0)
barchart(count~sex,groups=homeranges,VoleDispersal, origin=0)
barchart(count~sex,groups=homeranges,VoleDispersal, origin=0,stack=TRUE)