当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R faithful 老忠实间歇泉数据


R语言 faithful 位于 datasets 包(package)。

说明

美国怀俄明州黄石国家公园老忠实间歇泉喷发之间的等待时间和喷发持续时间。

用法

faithful

格式

包含 2 个变量的 272 个观测值的 DataFrame 。

[,1] eruptions numeric 喷发时间(分钟)
[,2] waiting numeric 下次喷发的等待时间(分钟)

细节

仔细观察 faithful$eruptions 会发现,这些时间最初以秒为单位进行了严重舍入,其中 5 的倍数比非人类测量下的预期更为频繁。有关喷发时间的更好版本,请参阅下面的示例。

该数据集有许多版本:Azzalini 和 Bowman (1990) 使用更完整的版本。

例子

require(stats); require(graphics)
f.tit <-  "faithful data: Eruptions of Old Faithful"

ne60 <- round(e60 <- 60 * faithful$eruptions)
all.equal(e60, ne60)             # relative diff. ~ 1/10000
table(zapsmall(abs(e60 - ne60))) # 0, 0.02 or 0.04
faithful$better.eruptions <- ne60 / 60
te <- table(ne60)
te[te >= 4]                      # (too) many multiples of 5 !
plot(names(te), te, type = "h", main = f.tit, xlab = "Eruption time (sec)")

plot(faithful[, -3], main = f.tit,
     xlab = "Eruption time (min)",
     ylab = "Waiting time to next eruption (min)")
lines(lowess(faithful$eruptions, faithful$waiting, f = 2/3, iter = 3),
      col = "red")

来源

W.哈德尔。

参考

Härdle, W. (1991). Smoothing Techniques with Implementation in S. New York: Springer.

Azzalini, A. and Bowman, A. W. (1990). A look at some data on the Old Faithful geyser. Applied Statistics, 39, 357-365. doi:10.2307/2347385.

也可以看看

Azzalini-Bowman 版本的包 MASS 中的geyser

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Old Faithful Geyser Data。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。