AttributeError: module 'statsmodels.formula.api' has no attribute 'OLS'
问题 I am trying to use Ordinary Least Squares for multivariable regression. But it says that there is no attribute 'OLS' from statsmodels. formula. api library. I am following the code from a lecture on Udemy The code is as follows: import statsmodels.formula.api as sm X_opt = X[:,[0,1,2,3,4,5]] #OrdinaryLeastSquares regressor_OLS = sm.OLS(endog = y, exog = X_opt).fit( The error is as follows: AttributeError Traceback (most recent call last) <ipython-input-19-3bdb0bc861c6> in <module>() 2 X_opt =