Every time I add align=TRUE the document won't knit. I would like to align each column's coefficients so that their decimals are directly above/below each other.
Here is my "chunk code"
```{r, results="asis", echo="FALSE", eval="TRUE"}
library(stargazer)
stargazer(model1, model2, model3, type = "latex",
title = "Country Deaths from Political Violence in 1975",
dep.var.labels.include = FALSE, dep.var.caption = "Deaths",
digits = 1, header = FALSE,
covariate.labels = c("Intercept", "Sanctions", "Political Rights",
"Upper 20 percent income share",
"Interaction of Political Rights and Sanctions"))
```