使用 R 中的 Fable 进行分层时间序列预测

发布于 2025-01-12 18:53:41 字数 539 浏览 0 评论 0原文

我正在使用寓言进行分层时间序列预测。我正在使用最佳调节方法来调节预测。这是示例代码。

agg_sw <- df %>%
  aggregate_key(productcategory/brand/sku, sales = sum(sales))

#Fit the model
ets_fit <- agg_sw %>%
  model(ets = ETS(sales)) %>%
  reconcile(ols = min_trace(ets, method = "ols"))


# Forecast
fc <- forecast(ets_fit,h= "1 year")

输入图片此处描述

是否可以在每个级别(例如:sku/品牌/产品)使用不同的预测方法并进行协调?如果是这样,请告诉我该怎么做。

I am doing hierarchical time series forecasting using fable. I am using optimal reconciliation method to reconcile the forecast. Here is the example code.

agg_sw <- df %>%
  aggregate_key(productcategory/brand/sku, sales = sum(sales))

#Fit the model
ets_fit <- agg_sw %>%
  model(ets = ETS(sales)) %>%
  reconcile(ols = min_trace(ets, method = "ols"))


# Forecast
fc <- forecast(ets_fit,h= "1 year")

enter image description here

Is it possible to use different forecasting method at each level(eg:sku/brand/product) and reconcile? If so, kindly let me know how to do it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文