possum | R Documentation |
Data representing possums in Australia and New Guinea. This is a copy of the
dataset by the same name in the DAAG
package, however, the dataset
included here includes fewer variables.
possum
A data frame with 104 observations on the following 8 variables.
The site number where the possum was trapped.
Population, either Vic
(Victoria) or other
(New South Wales or Queensland).
Gender, either m
(male) or f
(female).
Age.
Head length, in mm.
Skull width, in mm.
Total length, in cm.
Tail length, in cm.
Lindenmayer, D. B., Viggers, K. L., Cunningham, R. B., and Donnelly, C. F. 1995. Morphological variation among columns of the mountain brushtail possum, Trichosurus caninus Ogilby (Phalangeridae: Marsupiala). Australian Journal of Zoology 43: 449-458.
library(ggplot2)
# Skull width vs. head length
ggplot(possum, aes(x = head_l, y = skull_w)) +
geom_point()
# Total length vs. sex
ggplot(possum, aes(x = total_l, fill = sex)) +
geom_density(alpha = 0.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.