library(modelsummary) mod <- list( 'One variable' = lm(mpg ~ hp, mtcars), 'Two variables' = lm(mpg ~ hp + drat, mtcars) ) modelsummary( mod, statistic = c("t = {statistic}", "conf.int", "{std.error} ({p.value})"), stars = TRUE, align = "ldd")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.