Reputation: 101
does anybody know where I can find the full documentation regarding the PanelOLS from Pandas (from pandas.stats.plm import PanelOLS
) and PanelOLS from Linearmodels (from linearmodels import PanelOLS
)?
Upvotes: 2
Views: 4264
Reputation: 865
As pandas PanleOLS
module is no longer supported you should use linearmodels PanelOLS module instead, with its documentation here
Upvotes: 0
Reputation: 568
You can find the documentation for the linearmodels package here: https://bashtage.github.io/linearmodels/doc/
Upvotes: 1