treevol | R Documentation |
This data set provides measurements of the diameter, height and volume
of timber in 31 felled black cherry trees.
The records are a slight modification to the original dataframe "trees"
from the datasets
R package.
data(treevol)
A data frame with 31 observations and three variables
Diameter at breast height, in cm.
Total height, in m.
Timber volume, in cubic meters.
Ryan TA, Joiner BL, and Ryan BF. 1976. The Minitab Student Handbook. Duxbury Press.
pairs(treevol, panel = panel.smooth, main = "treevol dataframe")
plot(vtot ~ dbh, data = treevol, log = "xy")
coplot(log(vtot) ~ log(dbh) | toth, data = treevol,
panel = panel.smooth)
summary(m1 <- lm(log(vtot) ~ log(dbh), data = treevol))
summary(m2 <- update(m1, ~ . + log(toth), data = treevol))
anova(m1,m2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.