Closed rchlumsk closed 3 years ago
Add a check to the function to ensure that the length of the time series is consistent with the endpoint and derived interval
e.g.
dd_series <- seq.POSIXt(from=lubridate::as_datetime(dd_xts[1,]), to=lubridate::as_datetime(dd_xts[nrow(dd_xts),]), by="hour") # change to interval # check lengths nrow(dd_xts) == length(dd_series)
Closed with new commit to dev branch
Add a check to the function to ensure that the length of the time series is consistent with the endpoint and derived interval
e.g.