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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。