I would like to add the t-value underneath the standard error in square bracket, how can I accomplish this with Stargazer?
school.reg1 <- lm(math~income+students+english, data=CASchools)
school.reg2 <- lm(read~income+students+english, data=CASchools)
stargazer(school.reg1, school.reg2, type="latex",
covariate.labels = c("Number of Students at School", "Median Income of Parents", "% of Non-Native English Speakers", "Total School Spending", "Percent Qualifying for CalWorks "),
dep.var.labels = c("Math", "Reading"),
keep.stat=c("n", "adj.rsq"),
add.lines = list(c("AIC", round(AIC(school.reg1),2), round(AIC(school.reg2),2) )) )
Currently the table looks like this
Source code taken from https://bookdown.org/ejvanholm/WorkingWithData/attractive-output.html