我和这个问题有同样的错误。
奇怪的是,它在 ipython shell 中有效(提供了答案),但在 ipython 笔记本中无效。但它与C()
运营商有关,因为没有它可以工作(但不是作为运营商)
与该示例相同:
import statsmodels.formula.api as smf
import numpy as np
import pandas
url = "http://vincentarelbundock.github.com/Rdatasets/csv/HistData/Guerry.csv"
df = pandas.read_csv(url)
df = df[['Lottery', 'Literacy', 'Wealth', 'Region']].dropna()
df.head()
mod = smf.ols(formula='Lottery ~ Literacy + Wealth + Region', data=df)
res = mod.fit()
print res.summary()
这在 ipython notebook 和 shell 中都很有效,并且被patsy
视为Region
分类变量,因为它是由字符串组成的。
但是如果我尝试这个(如教程中所示):
res = smf.ols(formula='Lottery ~ Literacy + Wealth + C(Region)', data=df).fit()
我在 ipython 笔记本中遇到错误:
TypeError: 'Series' object is not callable
请注意,在 notebook 和 shellstatsmodels
中patsy
都是相同的版本(分别为 0.5.0 和 0.3.0)
你有同样的错误吗?