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
The latest version of tidyverse's predict function now returns .pred_res column instead of .pred. Because of that Modeltime is unable to calibrate the model and returns the following error:
>lm_predictions<-workflow_fit_lm %>%
+ predict(new_data= testing(splits))
Warningmessage:In predict.lm(object=object$fit, newdata=new_data, type="response") :predictionfromrank-deficientfit; attr(*, "non-estim") hasdoubtfulcases>># Typically, predictions are returned in a tibble with a `.pred` column>lm_predictions# A tibble: 56 × 1.pred_res<dbl>151.9263.8345.8425.4514.3614.3724.7829.2983.81065.8# ℹ 46 more rows# ℹ Use `print(n = ...)` to see more rows