I ran an binomial logit model while controlling for bank- and time-fixed effects by using the feglm()
function from the fixest package. However this function saves the regression output as a list. Unfortunately Stargazer doesn't seem to recognize this. Can anyone help me with this?
This is the regression I ran:
BinomialLogitModelWinsorizedLag <- feglm(CoCoIssuance ~ log(TotalAssetsLagged) + DepositsOverAssetsLagged + T1RatioLagged + AssetGrowthLagged + EquityOverAssetsLagged + CashOverAssetsLagged + CET1RatioLagged + DividendsOverEquityLagged + PriceOverBookLagged + ROALagged + LoansOverAssetsLagged | IssuerName + YearOfIssuance, data = WinsorizedDataLagged , family = binomial("logit") )
I tried extracting the estimated coefficients and standard errors from this list and save it as a data frame. However when I do this, Stargazer gives me the descriptive statistics and not the regression output table that I want.
# extract coefficients and standard errors
coef_tableLogitLag <- BinomialLogitModelWinsorizedLag$coeftable
stargazer(coef_tableLogitLag, type = "text")