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


R WWWusage 每分鍾互聯網使用量


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

說明

每分鍾通過服務器連接到互聯網的用戶數量的時間序列。

用法

WWWusage

格式

長度為 100 的時間序列。

例子

require(graphics)
work <- diff(WWWusage)
par(mfrow = c(2, 1)); plot(WWWusage); plot(work)
## Not run: 
require(stats)
aics <- matrix(, 6, 6, dimnames = list(p = 0:5, q = 0:5))
for(q in 1:5) aics[1, 1+q] <- arima(WWWusage, c(0, 1, q),
    optim.control = list(maxit = 500))$aic
for(p in 1:5)
   for(q in 0:5) aics[1+p, 1+q] <- arima(WWWusage, c(p, 1, q),
       optim.control = list(maxit = 500))$aic
round(aics - min(aics, na.rm = TRUE), 2)

## End(Not run)

來源

Durbin, J. 和 Koopman, S. J. (2001)。通過狀態空間方法進行時間序列分析。牛津大學出版社。

參考

Makridakis, S., Wheelwright, S. C. and Hyndman, R. J. (1998). Forecasting: Methods and Applications. Wiley.

相關用法


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