感谢您的关注。我对Python和计量经济学都很陌生。但我对比特币及其溢价(特别是在韩国的价格过高)非常感兴趣
我试图运行fama-macbeth回归来估算韩国比特币溢价。我使用过Google colab。
[https://colab.research.google.com/drive/1gTbGTy3cpHpdYb7iASnzKHh87GHNPxlI]
我在线性模型中使用了FamaMacBeth。 https://bashtage.github.io/linearmodels/panel/models.html#fama-macbeth
from linearmodels import BetweenOLS
mod = FamaMacBeth.from_formula('Arb_per ~ trends + vix_usd + vol_diff', df1)
mod.fit()
但是我得到了ZeroDivisionError:浮点除零
如果有人有想法或如何管理这个问题,我们将不胜感激。我不知道如何解决这个问题。