简体   繁体   English

具有3个输入向量和4个输出向量的线性回归?

[英]Linear Regression with 3 input vectors and 4 output vectors?

Task: 任务:

As an example, we have 3 input vectors: 例如,我们有3个输入向量:

foo = [1, 2, 3, 4, 5, 6]
bar = [50, 60, 70, 80, 90, 100]
spam = [-10, -20, -30, -40, -50, -60]

Also, we have 4 output vectors that have linear dependency from input vectors: 另外,我们有4个输出矢量,它们与输入矢量具有线性相关性:

foofoo = [1, 1, 2, 2, 3, 3]
barbar = [4, 4, 5, 5, 6, 6]
spamspam = [7, 7, 8, 8, 9, 9]
hamham = [10, 10, 11, 11, 12, 12]

How to use Linear Regression at this data in Python? 如何在Python中的此数据上使用线性回归?

You can use OLS (Ordinary Least Squares model) as done here : 您可以使用OLS(普通最小二乘模型)为完成

#imports
import numpy as np
import statsmodels.api as sm

#generate the input matrix
X=[foo,bar,spam]
#turn it into a numpy array
X = np.array(X).T
#add a constant column
X=sm.add_constant(X)

This gives the input matrix X : 这给出了输入矩阵X

array([[   1.,    1.,   50.,  -10.],
       [   1.,    2.,   60.,  -20.],
       [   1.,    3.,   70.,  -30.],
       [   1.,    4.,   80.,  -40.],
       [   1.,    5.,   90.,  -50.],
       [   1.,    6.,  100.,  -60.]])

And now you can fit each desired output vector: 现在,您可以拟合每个所需的输出向量:

resFoo = sm.OLS(endog=foofoo, exog=X).fit()
resBar = sm.OLS(endog=barbar, exog=X).fit()
resSpam = sm.OLS(endog=spamspam, exog=X).fit()
resham = sm.OLS(endog=hamham, exog=X).fit()

The result gives you the coefficients (for the constant, and the three columns foo, bar, and spam): 结果为您提供了系数(对于常数,以及三列foo,bar和spam):

>>> resFoo.params
array([-0.00063323,  0.0035345 ,  0.01001583, -0.035345  ])

You can now check it with the input: 您现在可以使用输入检查它:

>>> np.matrix(X)*np.matrix(resFoo.params).T
matrix([[ 0.85714286],
        [ 1.31428571],
        [ 1.77142857],
        [ 2.22857143],
        [ 2.68571429],
        [ 3.14285714]])

Which is close to the desired output of foofoo . 接近foofoo的期望输出。


See this question for different ways to do the regression: Multiple linear regression in Python 有关进行回归的不同方法,请参见此问题: Python中的多元线性回归

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM