Kineret Stanley
Results
2
comments of
Kineret Stanley
@mitchelloharawild I've updated my fabletools package and am unable to run the breusch_godfrey on my TSLM. remotes::install_github("tidyverts/fabletools") `fit_trend % mutate(surfing_festival = ifelse(month(month)==3 & year(month) > 1987,1,0)) %>% model(exponential = TSLM(log(sales)~...
Thank you. I'd loaded but not restarted. This code works: ``` fit_trend %>% hypothesize(tests = lst(breusch_godfrey), order = 1) ``` But this one doesn't... ``` fable::breusch_godfrey(fit_trend, order =1) ``` Could...