Google News
logo
R - Interview Questions
What is a White Noise model?
It is a basic time series model and a simple example of a stationary process. A white noise model has a fixed constant mean, a fixed constant variance, and no correlation over time. We can simulate a white noise model in the following way :
 
arima.sim(model=list(order=c(0,0,0)),n=50)->wn
Advertisement