I have some data coming from sensors with observations every 12 hours. I want to analyze it as time series, but I not sure what frequency to use to convert it to time series. The ts
function needs a start, an end and a frequency. ts(data, start = 1, end = numeric(), frequency = 1,...)
I do not want to aggregate it to once daily frequency (will likely lose some information). Any recommendations?