在 Google Colab 的 statsmodels 中建模 Tweedie 分布,但在尝试使用estimate_tweedie_power
函数时出现错误。这是我笔记本上的代码。
#Training model
tweedie_model = sm.GLM(y_train, X_train, exposure = df_train.exposure, family=sm.families.Tweedie(link=None,var_power=1.5,eql=True))
tweedie_result = tweedie_model.fit()
#Using the initial model output to decide the optimum index parameter "p"
GLM.estimate_tweedie_power(training_result, method='brentq', low=1.01, high=5.0)
这是我在运行estimate_tweedie_power
函数时的错误。
estimate_tweedie_power() 缺少 1 个必需的位置参数:'mu'