當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R trees 黑櫻桃樹的直徑、高度和體積


R語言 trees 位於 datasets 包(package)。

說明

該數據集提供了 31 棵被砍伐的黑櫻桃樹的直徑、高度和體積的測量值。請注意,數據中的直徑(以英寸為單位)被錯誤地標記為周長。它是在距地麵 4 英尺 6 英寸處測量的。

用法

trees

格式

包含 3 個變量的 31 個觀測值的 DataFrame 。

[,1] Girth numeric 樹直徑(實際上不是周長),以英寸為單位
[,2] Height numeric 高度(英尺)
[,3] Volume numeric 木材體積(立方英尺)

例子

require(stats); require(graphics)
pairs(trees, panel = panel.smooth, main = "trees data")
plot(Volume ~ Girth, data = trees, log = "xy")
coplot(log(Volume) ~ log(Girth) | Height, data = trees,
       panel = panel.smooth)
summary(fm1 <- lm(log(Volume) ~ log(Girth), data = trees))
summary(fm2 <- update(fm1, ~ . + log(Height), data = trees))
step(fm2)
## i.e., Volume ~= c * Height * Girth^2  seems reasonable

來源

Ryan, T. A.、Joiner, B. L. 和 Ryan, B. F. (1976) Minitab 學生手冊。達克斯伯裏出版社。

參考

Atkinson, A. C. (1985) Plots, Transformations and Regression. Oxford University Press.

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Diameter, Height and Volume for Black Cherry Trees。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。