I am using feols from the fixest library in R and then texreg / htmlreg to create tables. I would like to exclude several Goodness of Fit measures from my table (AIC, BIC, loglikelihood, etc), but texreg interprets my regression as an object form the broom package:
1: In doTryCatch(return(expr), name, parentenv, handler) :
texreg used the broom package to extract the following GOF measures, but could not cast them to numeric type: within.r.squaredtexreg used the broom package to extract the following GOF measures, but could not cast them to numeric type: pseudo.r.squared
According to the documentation, "extract.broom" unfortunately does not have any arguments with which I can exclude GOF's. Any idea how I could proceed?
fixest
andfeols
should be supported natively bytexreg
. If they aren't, it would be helpful to provide a minimal self-contained example to reproduce the problem.