'R Markdown: Ready to publish regression table in WORD using miceadds::glm.cluster

I am trying to do a logistic regression with robust clustered error using miceadds::glm.cluster:

model1 <- miceadds::glm.cluster(data=df_clean3, formula=recall ~ log(Population)+NoComplaintsReported+NoCrashesFiresReported+NoInjuriesReported+NoFatalityIncidentsReported+NoOtherFailuresReported+YearOpen+label, cluster="label", family="binomial")

I want to report a ready-to-publish regression table in Microsoft Word. I have tried the below methods, but each are not the "professionally prepared" version that I am looking for.

Can someone help me with this?

1-tab_df (from the sjPlot library): It stops with the error message that:

Error in UseMethod("family") : no applicable method for 'family' applied to an object of class "NULL"

2- Stargazer: the output table does not look neat.

3- summ (from jtools library): the output table does not look neat.

4- apa.reg.table (from apaTables library): it stops with this error message:

Error in 2:last_model_number_predictors : argument of length 0



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source