Tagged Questions
1
vote
1answer
138 views
regression coefficient calculation in python
I have a Dataframe and an input text file of activity.Dataframe is produced via pandas.I want to find out the regression coefficient of each term using following formula
...
0
votes
1answer
126 views
OLS with pandas: datetime index as predictor
I would like to use pandas OLS function to fit a trendline to my data Series. Does anyone knows how to use the datetime index from the pandas Series as predictor in the OLS?
For example, let say that ...
1
vote
1answer
44 views
Maximum number of dependencies in pandas ols?
I run pandas OLS on a data set. If I run it with less than 20 time series in the x-value, everything works fine
Is there a maximum of dependants pandas.ols can handle?
This is what I'm doing, except ...
3
votes
1answer
434 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 = ...
0
votes
1answer
543 views
Efficient Cointegration Test in Python
I am wondering if there is a better way to test if two variables are cointegrated than the following method:
import numpy as np
import statsmodels.api as sm
import statsmodels.tsa.stattools as ts
y ...