I have a csv data set that I would like t transform into time series data for time series analysis. The data looks like that (there are additional columns, and there are 17,190 obs.):
temp  interval
   10.0  2014-04-01 00:00:00
   10.0  2014-04-01 00:15:00
   10.0  2014-04-01 00:30:00
   10.0  2014-04-01 00:45:00
   7.8   2014-04-01 01:00:00
The Interval column is in POSIXct format.
I would appreciate help with the code for transforming it into time series please.
Thank you