'Output of summ() as nice table

I would like to have the output of the summ() function of the jtools package as a nice table. I tried stargazer() from the stargazer package, but it looks like it cant handle the object that summ() produces. I also tried kableExtra, but I dont seem to get it working, because its only for R-Markdown I suppose, but I just want a stargazer-like table ideally. Any help is appreciated. :)

Here is what I tried so far

lmer(Ertrag ~ Feuchte * Datum  +(1|Soll/Transpoint), data = BFK_2020) -> model
summ(model) -> results
stargazer(results, type = "html")

% Error: Unrecognized object type.

When I use export_summ(), I get:

> export_summs(results, scale = T, to.file = ".docx", file.name = "results.docx")
Error: No tidy method for objects of class lmerMod


Sources

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

Source: Stack Overflow

Solution Source