Closed Steviey closed 2 years ago
Note that when you load dlookr, it overwrites the tsibble:::format.interval
method with inum:::format.interval
.
Like the previous fix you've linked, I specifically use the tsibble method in the plot function now.
library(feasts)
#> Loading required package: fabletools
library(dlookr)
#> Registered S3 method overwritten by 'inum':
#> method from
#> format.interval tsibble
#>
#> Attaching package: 'dlookr'
#> The following object is masked from 'package:base':
#>
#> transform
tsibbledata::vic_elec %>% ACF(Temperature) %>% autoplot()
Created on 2022-08-25 by the reprex package (v2.0.1)
got the same error with feasts...
repr. example here: https://github.com/tidyverts/tsibble/issues/278