166747/how-extract-the-regression-coefficient-from-statsmodels-api
result = sm.OLS(gold_lookback, silver_lookback ).fit()
After I get the result, how can I get the coefficient and the constant? In other words, if y = ax + c how to get the values a and c?
The coefficients can be