Hi everyone,
I am trying to report the regression results as a word document from my code in R Markdown. The function summ() from jtools library reports a well-structured regression output on console, but when I knit the document to Microsoft Word, the regression results are reported as plain text and not as a table. Can someone help me with that?
The setup of the R chunk code: ```{r logistic , results = "asis", include=TRUE, warning=FALSE, message=FALSE, echo = FALSE}
My code:
model4 <- glm(recall ~ Population+NoComplaintsReported+NoCrashesFiresReported+NoInjuriesReported+NoFatalityIncidentsReported+NoOtherFailuresReported+YearOpen+label,data=df_clean3, family="binomial")
summ(model4)