WWWusage              package:datasets              R Documentation

_I_n_t_e_r_n_e_t _U_s_a_g_e _p_e_r _M_i_n_u_t_e

_D_e_s_c_r_i_p_t_i_o_n:

     A time series of the numbers of users connected to the Internet
     through a server every minute.

_U_s_a_g_e:

     WWWusage

_F_o_r_m_a_t:

     A time series of length 100.

_S_o_u_r_c_e:

     Durbin, J. and Koopman, S. J. (2001) _Time Series Analysis by
     State Space Methods._  Oxford University Press. <URL:
     http://www.ssfpack.com/dkbook/>

_R_e_f_e_r_e_n_c_e_s:

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

_E_x_a_m_p_l_e_s:

     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)

