标签: python matrix statsmodels
我正在尝试计算三个变量的简单回归,得分,0-1分类和天数的治疗。这三个都是df列。
response_delay = sm.ols(formula='score ~ C(treatment)+days', data=df) print response_delay.fit().summary()
我收到matrices not aligned错误,我不明白,因为只有一个矩阵,df。 我尝试删除na值,但仍然是同样的错误。
matrices not aligned