Top "Statsmodels" questions

Statsmodels is a Python module that allows users to explore data, estimate statistical models, and perform statistical tests.

How to fix Statsmodel warning: "Maximum no. of iterations has exceeded"

I am using Anaconda and I am trying logistic regression. After loading training data set and performed the regression. Then …

python warnings anaconda logistic-regression statsmodels
Analysing Time Series in Python - pandas formatting error - statsmodels

I am trying to analyse stars' data. I have light time series of the stars and I want to predict …

python numpy pandas statsmodels
python 3.5 in statsmodels ImportError: cannot import name '_representation'

I cannot manage to import statsmodels.api correctly when i do that I have this error: File "/home/mlv/.local/…

python python-3.x python-3.5 importerror statsmodels
Newey-West standard errors for OLS in Python?

I want to have a coefficient and Newey-West standard error associated with it. I am looking for Python library (ideally, …

python statistics time-series statsmodels
Print 'std err' value from statsmodels OLS results

(Sorry to ask but http://statsmodels.sourceforge.net/ is currently down and I can't access the docs) I'm doing a …

python io statsmodels
Time Series Analysis - unevenly spaced measures - pandas + statsmodels

I have two numpy arrays light_points and time_points and would like to use some time series analysis methods …

python pandas machine-learning time-series statsmodels
Getting statsmodels to use heteroskedasticity corrected standard errors in coefficient t-tests

I've been digging into the API of statsmodels.regression.linear_model.RegressionResults and have found how to retrieve different flavors …

python regression statsmodels
seasonal decompose in python

I have a CSV file that contains the average temperature over almost 5 years. After decomposition using seasonal_decompose function from …

python matplotlib machine-learning time-series statsmodels
statsmodels forecasting using ARMA model

I want to forecast timeseries data. I read in previous posts that module statsmodels has the required tool for using …

python time-series forecasting statsmodels
python stats models - quadratic term in regression

I have the following linear regression: import statsmodels.formula.api as sm model = sm.ols(formula = 'a ~ b + c', data = …

python regression statsmodels quadratic