Menu główne
Przykład procesu AR(1) # liczba generowanych wartości # i parametry procesun=100; a=1; fi=0.5x=matrix(0,nrow=n,ncol=1)plot(x,type="l")x[1]=0for (i in 2:n){x[i]=a+fi*x[i-1]+rnorm(1)plot(x,type="l")abline(0,0,n,0)Sys.sleep(0.05)}