I am working in R
, I need to ask that I have daily data for almost 11 months for every minute e.g
Date_Time Usage_kW
0:00 1.7382
0.01 1.7892
0.02 1.7125
.... .
... .
.... .
1.00 .
. .
. .
.
so on
and cycle repeats after every 60 minutes, so I chose the frequency 60 but I am not able to get the best prediction through arima model as the data is nonseasonal, please help me in selecting the correct value for frequency=?, start=? and end=? values
mydata<-ts(Usage[,2], start=1, end=24, frequency=60)
I want to plot data on daily basis e.g 24 hours??