Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm doing multivariate linear regression in Python (sklearn), but for some reason, the coefficients are not correctly returned as a list. Instead, a list IN A LIST is returned:

from sklearn import linear_model
clf = linear_model.LinearRegression()
# clf.fit ([[0, 0, 0], [1, 1, 1], [2, 2, 2]], [0, 1, 2])
clf.fit([[394, 3878, 13, 4, 0, 0],[384, 10175, 14, 4, 0, 0]],[3,9])
print 'coef array',clf.coef_
print 'length', len(clf.coef_)
print 'getting value 0:', clf.coef_[0]
print 'getting value 1:', clf.coef_[1]

This returns the values in a list of a list [[]] instead of a list []. Any idea why this is happening? Output:

coef array [[  1.03428648e-03   9.54477167e-04   1.45135995e-07   0.00000000e+00
0.00000000e+00   0.00000000e+00]]
length 1
getting value 0: [  1.03428648e-03   9.54477167e-04   1.45135995e-07   0.0000000
0e+00 0.00000000e+00   0.00000000e+00]
getting value 1:
Traceback (most recent call last):
  File "regress.py", line 8, in <module>
    print 'getting value 1:', clf.coef_[1]
IndexError: index out of bounds

But this works:

from sklearn import linear_model
clf = linear_model.LinearRegression()
clf.fit ([[0, 0, 0], [1, 1, 1], [2, 2, 2]], [0, 1, 2])
# clf.fit([[394, 3878, 13, 4, 0, 0],[384, 10175, 14, 4, 0, 0]],[3,9])
print 'coef array',clf.coef_
print 'length', len(clf.coef_)
print 'getting value 0:', clf.coef_[0]
print 'getting value 1:', clf.coef_[1]

Output:

coef array [ 0.33333333  0.33333333  0.33333333]
length 3
getting value 0: 0.333333333333
getting value 1: 0.333333333333
share|improve this question
I'm not bent on trying to get sklearn to work. If there's another python library that will return correlation coefficients for a linear multivariate regression, I'd love to hear about it... – Zach Jul 19 '12 at 2:24

4 Answers

I have never used the module for multivariate linear regression that you are referring to, so I cannot know why it is happening. But if you just want to solve you problem, you can flatten the list:

flat_list = clf.coef_[0]

If the list may have more than one sublist (and you want to combine them all into a flat list), then you can use a more general way to flatten it:

flat_list = [item for sublist in clf.coef_ for item in sublist]

EDIT: While waiting from a real explanation/solution from the package's developers, you could rely on a solution like this:

if isinstance(clf.coef_[0], list):
    clf.coef_ = clf.coef_[0]

That flattens the list only if there is a sublist inside of it.

share|improve this answer
It doesn't happen in every case, that's the problem. I'm wondering if I'm doing something wrong. – Zach Jul 18 '12 at 20:45
@Zach I see... After having a look at the documentation it is not clear at all why coef has different layouts depending on how you call fit(). At least such a possibility is not documented. You could try to contact support for that project. While you cannot find a real solution for this, you can have a look at the edit on my answer. – betabandido Jul 18 '12 at 21:42
thanks, that's a good work around – Zach Jul 18 '12 at 22:39
Actually I still get the same errors... – Zach Jul 18 '12 at 22:43
@Zach Can you check the type of clf.coef and clf.coef[0] (when you have a sublist)? Actually you may get a tuple somewhere instead of a list. – betabandido Jul 18 '12 at 22:58
show 3 more comments

Seems like an issue with scipy.linalg. If you trace the call chain it goes first in https://github.com/scikit-learn/scikit-learn/blob/master/sklearn/linear_model/base.py#L218 and then it reaches the if statement at https://github.com/scipy/scipy/blob/master/scipy/linalg/basic.py#L468. That if differentiates your two test cases. In the first case m,n=2,6 and in the second you have m,n=3,3.

share|improve this answer
Any idea how to get around it? Or another way to get multivariate linear regression in python? – Zach Jul 19 '12 at 1:22
You can use clf.coef_.flatten() which collapses the array to one dimension. – Daniel Velkov Jul 19 '12 at 4:03
up vote 0 down vote accepted

This is fixed by updating two files in the SciKit-Learn folder.

The code is here: https://github.com/scikit-learn/scikit-learn/commit/d0b20f0a21ba42b85375b1fbc7202dc3962ae54f

share|improve this answer

This really isn't a valid question about the Python language; it should be a question to the developers of sklearn. But... if you know that is the format your data will be returned in, you could just:

print 'getting value 0:', clf.coef_[0][0]
print 'getting value 1:', clf.coef_[0][1]
                                   ^^^ 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.