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.


Comments

Post a Comment

Popular posts from this blog

swift - Button on Table View Cell connected to local function -

dns - Dokku server hosts two sites with TLD's, both domains are landing on only one app -

c# - ajax - How to receive data both html and json from server? -