powered by
These data correspond to the (average) body weight and the (average) brain weight for sixty-two species of mammals.
data(brains)
A data frame with 62 rows and 3 variables:
a character string giving the species name.
a numeric vector indicating the average brain weight, in grams.
a numeric vector indicating the average body weight, in kilograms.
Allison T., Cicchetti D. (1976). Sleep in mammals: Ecology and constitutional correlates. Science 194:732-734.
Weisberg S. (2005). Applied Linear Regression, 3rd edition. Wiley, New York.
data(brains) xlab <- "log(Body Weight)" ylab <- "log(Brain Weight)" dev.new() with(brains,plot(log(BodyWt),log(BrainWt),pch=20,xlab=xlab,ylab=ylab))
Run the code above in your browser using DataLab