The Problem
When using rmarkdown in RStudio, my stargazer(glm()) output gets positioned below the text that I would like it to. It gets
Set float = FALSE. From the manual,
float: a logical value that indicates whether the resulting table will be a
floating table (set off, for instance, by \begin{table} and \end{table}).
In LaTeX, a table environment is a floating environment.
E.g.
stargazer(mtcars_glm, ci=FALSE, no.space = TRUE, report = c("vc*"), float = FALSE)