How to retrieve model estimates from statsmodels?
https://stackoverflow.com/questions/48522609/how-to-retrieve-model-estimates-from-statsmodels
WebHow to retrieve model estimates from statsmodels? import pandas as pd import numpy as np import statsmodels.api as sm # A dataframe with two variables np.random.seed (123) rows = 12 rng = pd.date_range ('1/1/2017', periods=rows, freq='D') df = pd.DataFrame (np.random.randint (100,150,size= (rows, 2)), columns= ['y', 'x']) df = df.set_index (rng ...
DA: 98 PA: 12 MOZ Rank: 66