Hi!
I am using the memisc package with mtable to format two multiple regression outputs into one table. I can not seem to find a way to call the Adjusted squared. It seems the package only prints squared. Is this accurate? If not, how can I get the output to generate Adjusted R-squared?
spretty.table <- mtable( "Model 1"= Model_1, "Model 2" = Model_2,
summary.stats=c("R-squared", "F","p","N"))
spretty.table %>% pander (justify = 'center')
write_html(spretty.table, "Models_1_2.html")
I have tried substituting "R-squared" with "Adj. R-squared" "Adjusted R-squared" and so on and so forth and it seems only to have a call for R-squared.
Thoughts?
Cheers,
M