Hello.
A very simple question.
Once I've estimated an autoregression as a wrapped linear model, say as
model_lr = get_sklearn_wrapper(LinearRegression, lags=10)
mlr = model_lr.fit(X[:-10], y[:-10])
how do I get the autoregression coefficients?
I cannot find the equivalent of scikit .coef_ , like
mlr = LinearRegression().fit(X, y)
mlr.coef_
Thanks.
Hello.
A very simple question.
Once I've estimated an autoregression as a wrapped linear model, say as
model_lr = get_sklearn_wrapper(LinearRegression, lags=10)
mlr = model_lr.fit(X[:-10], y[:-10])
how do I get the autoregression coefficients?
I cannot find the equivalent of scikit .coef_ , like
mlr = LinearRegression().fit(X, y)
mlr.coef_
Thanks.