powered by
Generate formatted regression tables
summary_table( ..., coef_digits = 3, se_digits = 3, stars = TRUE, latex = FALSE, model_names = NULL )
A formatted table
One or more model objects of felm or feglm class.
felm
feglm
Number of digits for coefficients. The default is 3.
Number of digits for standard errors. The default is 3.
Whether to include significance stars. The default is TRUE.
TRUE
Whether to output as LaTeX code. The default is FALSE.
FALSE
Optional vector of custom model names
m1 <- felm(mpg ~ wt | cyl, mtcars) m2 <- fepoisson(mpg ~ wt | cyl, mtcars) summary_table(m1, m2, model_names = c("Linear", "Poisson"))
Run the code above in your browser using DataLab