我已經(jīng)開(kāi)始學(xué)習(xí)機(jī)器學(xué)習(xí),并且正在嘗試實(shí)現(xiàn)線性回歸反向消除。這是代碼:import statsmodels.api as smx = sm.add_constant(x)x_opt = x[:,[0,1,2,3,4,5]]regressor_OLS = sm.OLS(endog=y,exog=x_opt)這是錯(cuò)誤:Traceback (most recent call last): File "<input>", line 1, in <module> File "C:\Users\ewasy\AppData\Local\Programs\Python\Python37\lib\site-packages\statsmodels\regression\linear_model.py", line 859, in __init__ hasconst=hasconst, **kwargs) File "C:\Users\ewasy\AppData\Local\Programs\Python\Python37\lib\site-packages\statsmodels\regression\linear_model.py", line 702, in __init__ weights=weights, hasconst=hasconst, **kwargs) File "C:\Users\ewasy\AppData\Local\Programs\Python\Python37\lib\site-packages\statsmodels\regression\linear_model.py", line 190, in __init__ super(RegressionModel, self).__init__(endog, exog, **kwargs) File "C:\Users\ewasy\AppData\Local\Programs\Python\Python37\lib\site-packages\statsmodels\base\model.py", line 236, in __init__ super(LikelihoodModel, self).__init__(endog, exog, **kwargs) File "C:\Users\ewasy\AppData\Local\Programs\Python\Python37\lib\site-packages\statsmodels\base\model.py", line 77, in __init__ **kwargs) File "C:\Users\ewasy\AppData\Local\Programs\Python\Python37\lib\site-packages\statsmodels\base\model.py", line 100, in _handle_data data = handle_data(endog, exog, missing, hasconst, **kwargs) File "C:\Users\ewasy\AppData\Local\Programs\Python\Python37\lib\site-packages\statsmodels\base\data.py", line 672, in handle_data **kwargs) File "C:\Users\ewasy\AppData\Local\Programs\Python\Python37\lib\site-packages\statsmodels\base\data.py", line 87, in __init__ self._handle_constant(hasconst)這是變量 x 的 2 行:array([[1.0, 0.0, 1.0, 2.016411493158463, 0.560752914530775,2.153943088571744], [1.0, 0.0, 0.0, 1.9558603364325031, 1.0828065830760816,1.9236003956421444]], dtype=object)這是變量 y 的 2 行:array([[2.01120333],[1.99942997]])
查看完整描述