0
votes
1answer
102 views

Efficient way to do a rolling linear regression

I have two vectors x and y, and I want to compute a rolling regression for those, e.g a on (x(1:4),y(1:4)), (x(2:5),y(2:5)), ... Is there already a function for that? The best algorithm I have in mind ...
2
votes
1answer
93 views

linear regression on log-log histogram in numpy

I have a distribution (drawn with numpy.histogram) that seems to be linear when plotted on log-log axis. I'd like to compute and draw a linear regression on this histogram to find out the parameters ...
1
vote
1answer
132 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
3answers
383 views

how to do linear regression in python, with missing elements

I found an example of linear regression: http://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.lstsq.html#numpy.linalg.lstsq x = np.array([0, 1, 2, 3]) y = np.array([-1, 0.2, 0.9, 2.1]) ...
4
votes
3answers
886 views

multivariate linear regression in python?

I can't seem to find any python libraries that do multivariate regression. The only things I find only do simple regression. I need to regress my dependent variable (y) against several independent ...
5
votes
3answers
2k views

Constrained Linear Regression in Python

I have a classic linear regression problem of the form: y = X b where y is a response vector X is a matrix of input variables and b is the vector of fit parameters I am searching for. Python ...
5
votes
2answers
1k views

6th degree curve fitting with numpy/scipy

I have a very specific requirement for interpolating nonlinear data using a 6th degree polynomial. I've seen numpy/scipy routines (scipy.interpolate.InterpolatedUnivariateSpline) that allow ...
2
votes
2answers
2k views

How to force zero interception in linear regression?

I'm a bit of a newby so apologies if this question has already been answered, I've had a look and couldn't find specifically what I was looking for. I have some more or less linear data of the form ...
1
vote
1answer
846 views

pure python code for multivariate linear regression

Due to a bug (perhaps in the numpy distribution I'm using), I can't use numpy.linalg.lstsq. And every statistics library I found didn't install under python 3 (on Windows). Does someone have pure ...
3
votes
5answers
713 views

numpy: code to update least squares with more observations

I am looking for a numpy-based implementation of ordinary least squares that would allow the fit to be updated with more observations. Something along the lines of Applied Statistics algorithm AS 274 ...
2
votes
2answers
14k views

Linear Regression with Python numpy

I'm trying to make a simple linear regression function but continue to encounter a numpy.linalg.linalg.LinAlgError: Singular matrix error Existing function (with debug): def makeLLS(inputData, ...
6
votes
3answers
10k views

How to do exponential and logarithmic curve fitting in Python? I found only polynomial fitting

I have a set of data and I want to compare which line describes it best (polynomials of different orders, exponential or logarithmic). I use Python and Numpy and for polynomial fitting there is a ...
3
votes
1answer
2k views

Converting Numpy Lstsq residual value to R^2

I am performing a least squares regression as below (univariate). I would like to express the significance of the result in terms of R^2. Numpy returns a value of unscaled residual, what would be a ...