Statsmodel投掷RuntimeWarning

时间:2017-08-23 15:53:59

标签: python-3.x statsmodels

我正在尝试使用Pandas和statsmodel在Python中运行以下代码,并且它不断向我发送运行时警告。有谁知道如何克服这个问题?先感谢您。 Codeerror description

代码:

import pandas as pd
df = pd.read_csv('appsessions_2016_jan.csv',  delimiter='\x01')`

df_features = df.iloc[:,[3,5,6]]

df_y = df.iloc[:,[4]]

import statsmodels.api as sm

X1 = sm.add_constant(df_features)

est = sm.OLS(df_y, X1).fit()

est.summary()

0 个答案:

没有答案