I have used tidyr::nest
to run a series of logistic regression models with different dependent variables. I want to output the results as a single html table in RMarkdown with each model as a column and the rows as exponentiated coefficients with 99% CIs. I cannot figure out the workflow between nest
, tidy
, and a table-rendering package like stargazer
to get this to work. If I unnest
my tidy
output and pass it to stargazer
, or if I just try to pass the nest
ed output (the variable in the nested data frame called "model" below) to stargazer
directly, I get no output. I would prefer to use the tidy
output anyway because of the exponentiated coefficients and 99% CIs. I essentially need this vignette to go one step farther and explain how to use the output of nest
and tidy
to create formatted regression tables. I also looked at this SO post, but I find it hard to believe that there isn't an easier way to do this that I am just missing.
Sample data, along with my general approach to running the models:
id <- 1:2000
gender <- sample(0:1, 2000, replace = T)
age <- sample(17:64, 2000, replace = T)
race <- sample(0:1, 2000, replace = T)
cond_a <- sample(0:1, 2000, replace = T)
cond_b <- sample(0:1, 2000, replace = T)
cond_c <- sample(0:1, 2000, replace = T)
cond_d <- sample(0:1, 2000, replace = T)
df <- data.frame(id, gender, age, race, cond_a, cond_b, cond_c, cond_d)
df %>% gather(c(cond_a, cond_b, cond_c, cond_d), key = "condition", value = "case") %>%
group_by(condition) %>% nest() %>%
mutate(model = map(data, ~glm(case ~ gender + age + race, family = "binomial", data = .)),
tidy = map(model, tidy, exponentiate = T, conf.int = T, conf.level = 0.99))
Hope I get it correct, essentially you pass the lm objects and the confidence interval separately into
stargazer
, using this answer from your linked question.You can read the stargazer help page for how to input for example custom ci would require:
So in your case, it's a little bit more work, we store the results first.
Then pull out CI and coefficients:
Then apply
stargazer
: