提问人:Kate 提问时间:11/15/2023 更新时间:11/15/2023 访问量:19
在 R 中构建多城市时间序列回归
building a multi-city time series regression in R
问:
如何查看使用 Fable 包从多城市回归分析构建的单一模型?我是建模新手,所以任何帮助将不胜感激 - 谢谢!
使用 Fable 包中的 TSLM 函数构建时间序列回归模型时,我收到一条警告,指出
Warning: Model reporting is only supported for individual models, so a glance will be shown. To see the report for a specific model, use
select()filter() 我使用的代码是这样的:and
to identify a single model.
tsdf %>%
model(TSLM(dy ~ young + mid + old + edu + gdp + jobs + migration + population)) %>%
report()
答: 暂无答案
评论