Skip to content
Advertisement

Tag: statsmodels

Print ‘std err’ value from statsmodels OLS results

(Sorry to ask but http://statsmodels.sourceforge.net/ is currently down and I can’t access the docs) I’m doing a linear regression using statsmodels, basically: I know that I can print out the full set of results with: which outputs something like: I need a way to print out only the values of coef and std err. I can access coef with: but

auto.arima() equivalent for python

I am trying to predict weekly sales using ARMA ARIMA models. I could not find a function for tuning the order(p,d,q) in statsmodels. Currently R has a function forecast::auto.arima() which will tune the (p,d,q) parameters. How do I go about choosing the right order for my model? Are there any libraries available in python for this purpose? Answer You can

Advertisement