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

learn more… | top users | synonyms

0
votes
0answers
61 views

Python 2.7 - statsmodels - formatting and writing summary output

I'm doing logistic regression using pandas 0.11.0(data handling) and statsmodels 0.4.3 to do the actual regression, on Mac OSX Lion. I'm going to be running ~2,900 different logistic regression ...
0
votes
0answers
23 views

statsmodels: specifying non-linear regression models using patsy

I am trying to calculate non-linear regression models using statsmodles. In particular I have problems learning the patsy syntax. Is there any tutorial or example how to formulate non-linear models ...
0
votes
2answers
29 views

Statsmodels: How to use get_rdataset

every time I try to use sm.datasets.get_rdataset I get the error message: ImportError: cannot import name get_rdataset I am using the latest version of statsmodels (0.5.0.dev-1bbd4ca) which I ...
0
votes
2answers
38 views

Python statsmodels OLS: how to save learned model to file

I am trying to learn an ordinary least squares model using Python's statsmodels library, as described here. sm.OLS.fit() returns the learned model. Is there a way to save it to the file and reload ...
2
votes
1answer
62 views

Confidence intervals for model prediction

I am following along with a statsmodels tutorial An OLS model is fitted with formula = 'S ~ C(E) + C(M) + X' lm = ols(formula, salary_table).fit() print lm.summary() Predicted values are provided ...
1
vote
0answers
68 views

seasonal decomposition on non-uniform spaced time series, any well-established algo in R or Python?

stats package in R has stl(), but it requires a uniformly spaced time series created by ts(). It can't deal with zoo objects. Strangely, it can't deal with missing values either, although STL method ...
0
votes
0answers
62 views

Python 2.7 Modules with Hive Streaming

I am doing Hive Streaming on a DSE 3.0 cluster (Hive 0.9) using a Python mapper. My python script imports the statsmodels module, which requires Python 2.7. Since the default is not 2.7 (it's 2.4), I ...
0
votes
1answer
45 views

statsmodles AR model error when calling params

New to statsmodels, trying to use statsmodels.tsa.ar_model to fit a pandas timeseries. #pull one series from dataframe y=data.sentiment armodel=sm.tsa.ar_model.AR(y, freq='D').fit() armodel.params() ...
0
votes
1answer
35 views

Scipy Guassian_kde Nomalisation

I've been using scipy.stats.gausian_kde but have a few questions about its output. I've plotted the normalised histogram and the gaussian_kde plot on the same graph. Why are the y-values so vastly ...
0
votes
1answer
64 views

VAR model: IndexError: tuple index out of range

I am trying to run a VAR algorithm with statsmodels to predict some future values and I got stuck. I have an array of values like this: php_resp_time = [349.70448833, 304.32462033000002, ...
2
votes
2answers
93 views

Getting CDF of variable-sized numpy arrays in Python using same bins?

I'd like to make a set of comparable empirical CDFs for a few numpy arrays (each of different length) and store these in a pandas dataframe: a = scipy.randn(100) b = scipy.randn(500) # ECDF from ...
0
votes
1answer
91 views

How can I perform a 2-way repeated measures anova using statsmodels?

I found this example, which explains how to perform a 2-way ANOVA. I was wondering how to do the same for a repeated-measures design. I did see this question, but I cannot assume independence of my ...
3
votes
1answer
151 views

VAR model with pandas + statsmodels in Python

I am an avid user of R, but recently switched to Python for a few different reasons. However, I am struggling a little to run the vector AR model in Python from statsmodels. Q#1. I get an error when ...
0
votes
2answers
132 views

statmodels regression plots not working with pandas datatypes

import numpy as np import pandas as pd import statsmodels.api as sm import statsmodels.graphics as smg data = pd.DataFrame({'Y': np.random.rand(1000), 'X':np.random.rand(1000)}) This works ...
2
votes
1answer
164 views

Statsmodel using ARMA

A bit new here but trying to get a statsmodel ARMA prediction tool to work. I've imported some stock data from Yahoo and gotten the ARMA to give me fitting parameters. However when I use the predict ...
0
votes
1answer
46 views

correlation in statsmodel using python

could u please help me to Find correlation for these two lists importing stats-model in python. a=[1.0,2.0,3.0,2.0] b=[789.0,786.0,788.0,785.0] using some built-in functions
0
votes
2answers
193 views

genfromtxt in python code for missing columns

Input csv file: a,b,c,d,e 1,2,3,4,2 3,4,5,6,3 3,4,5 1,2 Code: import numpy as np data = np.genfromtxt("sa.csv", dtype=None, delimiter=',', names=True) print data['a'],data['b'],data['e'] I ll ...
1
vote
1answer
76 views

Ensure consistent time indexing in statsmodels predict

I am trying to fit an AR(1) model to a Pandas time series and project forward. The data is annual with each year starting at 1 April. When I use statsmodels.tsa.ar_model.AR.predict to forecast from ...
3
votes
4answers
464 views

Python statistics package: difference between statsmodel and scipy.stats [closed]

I need some advice on selecting statistics package for Python, I've done quite some search, but not sure if I get everything right, specifically on the differences between statsmodels and scipy.stats. ...
0
votes
1answer
249 views

ECDF in python without step function?

I have been using ECDF (empirical cumulative distribution function) from statsmodels.distributions to plot a CDF of some data. However, ECDF uses a step function and as a consequence I get ...
0
votes
2answers
193 views

Statsmodels formula API (patsy): How to exclude a subset of interaction components?

I'm building a WLS (statsmodels.formula.api.wls) model using the statsmodels formulas API (from patsy) and I'm using interactions between factors. Some of these are predictive whereas others are not. ...
3
votes
2answers
538 views

Regression on stock data using pandas and matplotlib

I'd like to plot what Excel calls an "Exponential Trend/Regression" on a stock chart. When I run the code below in the IPython notebook it simply says "The kernel has died, would you like to restart ...
0
votes
1answer
107 views

python statsmodels.tsa.stattools.pacf with masked array?

Is there a general trick to using masked arrays (or arrays containing nan's) with the statsmodels routines? For example pacf and acf?
1
vote
1answer
300 views

multiple correlation in python

I am trying to use python to compute multiple linear regression and multiple correlation between a response array and a set of arrays of predictors. I saw the very simple example to compute multiple ...
3
votes
1answer
436 views

Predicting values using an OLS model with statsmodels

I calculated a model using OLS (multiple linear regression). I divided my data to train and test (half each), and then I would like to predict values for the 2nd half of the labels. model = ...
4
votes
1answer
254 views

Best practice for upgrading Python modules?

Good morning, I've been learning Python for two or three months now but now finding some problems with my 2.7 installation as I've looked into modules such as nltk. However, when I want to list ...
9
votes
3answers
2k views

Using Python for Time Series Analysis and Forecasting

I am working on time series in python. The libraries which I found useful and promising are pandas statsmodel (for ARIMA) simple exponential smoothing is provided from pandas. Also for ...
4
votes
3answers
1k views

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 ARMA method for forecasting which is exactly the one I have been looking for. In ...
1
vote
2answers
480 views

Johansen cointegration test in python

I can't find any reference on funcionality to perform Johansen cointegration test in any Python module dealing eith statistics and time series analysis (pandas and statsmodel). Does anybpdy know if ...
1
vote
1answer
182 views

Failing tests for python package statsmodels

I've downloaded the Python package statsmodels (using pip) and run the tests, and found several were failing out of the gate. The test command is >>> import statsmodels.api as sm ...
1
vote
2answers
203 views

Pulling variable names when using pandas and statsmodels

I'm trying to access the names of variables from the results generated by statsmodels. I'll elaborate more after the example code. import scikits.statsmodels.api as sm import pandas as pd data = ...
0
votes
1answer
472 views

ImportError: No module named statsmodels

Hi I downloaded the StatsModels source from http://pypi.python.org/pypi/statsmodels#downloads I then untarred to /usr/local/lib/python2.7/dist-packages and per the documentation at ...
0
votes
0answers
168 views

Trouble Importing Statsmodels.api (python)

I downloaded statsmodels and ran the .exe file to install the module. Then I did import statsmodels.api as sm and I got an error saying I needed pandas, so I got this module and downloaded it. Now ...
13
votes
2answers
777 views

Difference in Python statsmodels OLS and R's lm

I'm not sure why I'm getting slightly different results for a simple OLS, depending on whether I go through panda's experimental rpy interface to do the regression in R or whether I use statsmodels in ...
1
vote
1answer
668 views

ADF test in statsmodels in Python

I am trying to run a Augmented Dickey-Fuller test in statsmodels in Python, but I seem to be missing something. This is the code that I am trying: import numpy as np import statsmodels.tsa.stattools ...
0
votes
1answer
320 views

scikits statsmodels - ImportError

How can I troubleshoot this import error? Thanks. import scikits.statsmodels.api as sm File "C:\Python27\lib\site-packages\scikits\__init__.py", line 1, in <module> ...