Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

time series with 10 min frequency in R

My data is memory consumption of an application for every 10 minute interval for the last 26 days.My start date is Oct 6th 2013 and end date is Novemeber 2nd 2013.I've read the data in to a time frame and cleaned it up. Now am trying to create a time series , something along the lines of my_ts<-ts(mydata[3],start=c(2013,10),frequency=10)

Am sure this not correct as the frequency , can someone point me in the right direction so I can plot the time series .

like image 495
Aneel K Avatar asked Nov 02 '13 22:11

Aneel K


1 Answers

In R, frequency actually means the period of the seasonality. i.e., frequency = frequency of observations per season. In your case, the "season" is presumably one day. So you want

ts(mydata[3],start=c(2013,10),frequency=24*60/10)
like image 80
Rob Hyndman Avatar answered Sep 24 '22 18:09

Rob Hyndman