You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying out certain changes in zoo, we noticed that this leads to problems in TSstudio because you have calls like as.ts(<zoo_object>, start = ..., end = ...). Up to now the start/end arguments were simply ignored but this may change in future versions.
It would be safer if you distinguish xts and zoo objects in the coercions in the following places:
When trying out certain changes in
zoo
, we noticed that this leads to problems inTSstudio
because you have calls likeas.ts(<zoo_object>, start = ..., end = ...)
. Up to now thestart
/end
arguments were simply ignored but this may change in future versions.It would be safer if you distinguish
xts
andzoo
objects in the coercions in the following places:https://github.com/RamiKrispin/TSstudio/blob/master/R/correlation_functions.R#L188-L190
https://github.com/RamiKrispin/TSstudio/blob/master/R/util_functions.R#L272-L274
For the
xts
objects thestart
/end
are used and improve the output ofas.ts()
. But forzoo
objects they currently make no sense.The text was updated successfully, but these errors were encountered: