I am trying to create a Fixed Effects model on Python using the following Python code -
t = time
model = feols(y ~ g1*p + t + geo + indus| geo^t + indus^t , data=data)
What would be its patsy equivalent? How can we create this on PanelOLS?
I am trying to create a Fixed Effects model on Python using the following Python code -
t = time
model = feols(y ~ g1*p + t + geo + indus| geo^t + indus^t , data=data)
What would be its patsy equivalent? How can we create this on PanelOLS?