Here you will find daily news and tutorials about R, contributed by over 450 bloggers.
You can subscribe for e-mail updates:
And get updates to your Facebook:
If you are an R blogger yourself you are invited to add your own R content feed to this site (Non-English R bloggers should add themselves- here)
Consider a time series, generated using
set.seed(1)
E=rnorm(240)
X=rep(NA,240)
rho=0.8
X=0
for(t in 2:240){X=rho*X+E}
The idea is to assume that an autoregressive model can be considered, but we don't know the value of the parameter. ...