| Wolves {candisc} | R Documentation |
Wolf skulls
Description
Skull morphometric data on Rocky Mountain and Arctic wolves (Canis Lupus L.) taken from Morrison (1990), originally from Jolicoeur (1959).
Format
A data frame with 25 observations on the following 11 variables.
groupa factor with levels
ar:far:mrm:frm:m, comprising the combinations oflocationandsexlocationa factor with levels
ar=Arctic,rm=Rocky Mountainsexa factor with levels
f=female,m=malex1palatal length, a numeric vector
x2postpalatal length, a numeric vector
x3zygomatic width, a numeric vector
x4palatal width outside first upper molars, a numeric vector
x5palatal width inside second upper molars, a numeric vector
x6postglenoid foramina width, a numeric vector
x7interorbital width, a numeric vector
x8braincase width, a numeric vector
x9crown length, a numeric vector
Details
All variables are expressed in millimeters.
The goal was to determine how geographic and sex differences among the wolf
populations are determined by these skull measurements. For MANOVA or
(canonical) discriminant analysis, the factors group or
location and sex provide alternative parameterizations.
Source
Morrison, D. F. Multivariate Statistical Methods, (3rd ed.), 1990. New York: McGraw-Hill, p. 288-289.
References
Jolicoeur, P. “Multivariate geographical variation in the wolf Canis lupis L.”, Evolution, XIII, 283–299.
Examples
data(Wolves)
# using group
wolf.mod <-lm(cbind(x1,x2,x3,x4,x5,x6,x7,x8,x9) ~ group, data=Wolves)
car::Anova(wolf.mod)
wolf.can <-candisc(wolf.mod)
plot(wolf.can)
heplot(wolf.can)
# using location, sex
wolf.mod2 <-lm(cbind(x1,x2,x3,x4,x5,x6,x7,x8,x9) ~ location*sex, data=Wolves)
car::Anova(wolf.mod2)
wolf.can2 <-candiscList(wolf.mod2)
plot(wolf.can2)