微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何将系列从 Gretl 命令导出到 xlsx/csv

如何解决如何将系列从 Gretl 命令导出到 xlsx/csv

我正在尝试用 Gretl 测试 SVAR 的源代码(请参阅 http://mayoral.iae-csic.org/timeseries_insead/svar_gretl.pdf 的第 20 页)

set echo off
set messages off
include SVAR.gfn
open BlQuah.gdt

list X = DY U
list exog = const time

# set up the model
BQModel = SVAR_setup("C",X,exog,8)

# set up the long-run restriction
SVAR_restrict(&BQModel,"lrC",1,2,0)

# perform estimation
SVAR_estimate(&BQModel)

# Now perform historical decomposition
list HDDY = SVAR_hd(&BQModel,1)
list HDU = SVAR_hd(&BQModel,2)

# check that the observed time series can be reproduced exactly from the individual decomposed series

ols DY const HDDY

# cumulate the effect of the demand shock on DY

series hd_Y_2 = cum(hd_DY_2)

当我尝试运行最后一行代码时,出现以下错误。我认为源代码可能有错误,所以我希望尝试找到解决方案?

cum: argument should be series,is list

此外,有没有办法将 hd_Y_2 系列保存为数据框并将其导出到 Excel 文件中?

TIA!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。