I have a sample data here for a daily time series and I want to how can I find out if it shows a weekly or 10 day pattern.
sampledata<- rnorm(200, mean = 10, sd = 23)
ts_df <- ts( sampledata, frequency=1, start=as.Date("2012-03-07"))
plot(ts_df )
I have a sample data here for a daily time series and I want to how can I find out if it shows a weekly or 10 day pattern.
sampledata<- rnorm(200, mean = 10, sd = 23)
ts_df <- ts( sampledata, frequency=1, start=as.Date("2012-03-07"))
plot(ts_df )