python - linearmodels panelOLS: Regression output with stars -
i'm using linearmodels package estimate panel-ols. example see:
import numpy np statsmodels.datasets import grunfeld data = grunfeld.load_pandas().data data.year = data.year.astype(np.int64) # multiindex, entity - time data = data.set_index(['firm','year']) linearmodels import panelols mod = panelols(data.invest, data[['value','capital']], entity_effect=true) res = mod.fit(cov_type='clustered', cluster_entity=true)
i want export regression's output in .tex file. there convenient way of formatting output confidence stars , without other information cis? question has been asked in context of standard ols in here not apply 'paneleffectsresults' object, since following error:
'paneleffectsresults' object has no attribute 'bse'
thanks in advance.
How did you solve it? having the same problem
ReplyDelete