I am brand new to using R, but have discovered Stargazer as an attractive way to display regression output. My question is whether there is a way for Stargazer to output BOTH SE of coefficients and CI? I realize this may be statistically redundant, but would be useful.
This gives me coefficients, SE, and p:
stargazer(mylogit, type = "text", report = "vc*sp")
This gives me coefficients, CI, and p:
stargazer(mylogit, type = "text", ci = TRUE, report = "vc*sp")
Any way to get both SE and CI?