papaja (Preparing APA Journal Articles) is an R package that provides document formats to produce complete APA manuscripts from RMarkdown-files (PDF and Word documents) and helper functions that facilitate reporting statistics, tables, and plots.
I refactored the apa_print.lm() method using the canonize-beautify workflow. As of now, arrange_regression() and apa_print.glm() are not needed, anymore.
I still defined apa_print.glm <- apa_print.lm explicitly to maintain backward compatibility with (legacy) code that explicitly calls apa_print.glm().
Moreover, I was able to remove the broom dependency in apa_print.lm(), so this also partially addresses #485.
Hi @crsh,
I refactored the apa_print.lm() method using the canonize-beautify workflow. As of now,
arrange_regression()
andapa_print.glm()
are not needed, anymore.I still defined
apa_print.glm <- apa_print.lm
explicitly to maintain backward compatibility with (legacy) code that explicitly callsapa_print.glm()
.Moreover, I was able to remove the broom dependency in
apa_print.lm()
, so this also partially addresses #485.