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
library(fpp3)
#> ── Attaching packages ─────────────────────────────────────── fpp3 0.4.0.9000 ──#> ✔ tibble 3.1.8 ✔ tsibble 1.1.3 #> ✔ dplyr 1.0.10 ✔ tsibbledata 0.4.1.9000#> ✔ tidyr 1.2.1 ✔ feasts 0.3.0.9000#> ✔ lubridate 1.9.0 ✔ fable 0.3.2.9000#> ✔ ggplot2 3.4.0 ✔ fabletools 0.3.2.9000#> ── Conflicts ───────────────────────────────────────────────── fpp3_conflicts ──#> ✖ lubridate::date() masks base::date()#> ✖ dplyr::filter() masks stats::filter()#> ✖ tsibble::intersect() masks base::intersect()#> ✖ tsibble::interval() masks lubridate::interval()#> ✖ dplyr::lag() masks stats::lag()#> ✖ tsibble::setdiff() masks base::setdiff()#> ✖ tsibble::union() masks base::union()
library(forecast)
#> Registered S3 method overwritten by 'quantmod':#> method from#> as.zoo.data.frame zoo#> #> Attaching package: 'forecast'#> The following objects are masked from 'package:fabletools':#> #> accuracy, forecastus_change|>
model(MEAN(Consumption)) |>
forecast()
#> Warning in mean.default(x, na.rm = TRUE): argument is not numeric or logical:#> returning NA#> Point Forecast Lo 80 Hi 80 Lo 95 Hi 95#> 1 NA NA NA NA NA#> 2 NA NA NA NA NA#> 3 NA NA NA NA NA#> 4 NA NA NA NA NA#> 5 NA NA NA NA NA#> 6 NA NA NA NA NA#> 7 NA NA NA NA NA#> 8 NA NA NA NA NA#> 9 NA NA NA NA NA#> 10 NA NA NA NA NA
Created on 2023-01-09 with reprex v2.0.2
Created on 2023-01-09 with reprex v2.0.2
The text was updated successfully, but these errors were encountered: