Question

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 .

Was it helpful?

Solution

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)
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top