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
With R-devel (83995-ish) `R CMD check` notes these S3 methods are not
registered. It also notes that the signatures for as.POSIXct.tis() and
str.replot_xts() do not match the respective generics.
It also thinks time.frequency() is a S3 method because time() is a
generic. The function isn't exported, so renaming won't break any
external code.
See #398.
Description
With R-devel (83995-ish)
R CMD check
and_R_CHECK_S3_METHODS_SHOW_POSSIBLE_ISSUES_=true
shows the following:Need to register S3 methods for:
str.replot_xts()
as.POSIXct.tis()
as.xts.tis()
tformat.default()
And rename
time.frequency()
totime_frequency()
(or delete because it's not used).The text was updated successfully, but these errors were encountered: