Hi there,

I have a question regarding the use of reghdfe and esttab. Right now I have a bunch of continuous numeric controls but also a bunch of categorical ones:
Code:
local controls "apple banana orange"
reghdfe depvar var1 var2 va3,absorb(`controls' county year)
estimates store model1
estfe model1,labels(county "County FE" year "Year FE")
esttab model1,indicate(`r(indicate_fe)')
In this case, How do I indicate the controls as a whole? Otherwise every variable in the controls will be indicated separately, which will make the table quite redundant. Thanks!