linear_reg() %>%
set_engine("lm") %>%
fit(v2x_libdem ~ v2cacamps, data = modelData) %>%
tidy(conf.int = TRUE) %>% select(term, estimate, std.error, conf.low,conf.high) %>% kable(digits = 3)
term | estimate | std.error | conf.low | conf.high |
---|---|---|---|---|
(Intercept) | 0.411 | 0.018 | 0.376 | 0.446 |
v2cacamps | -0.079 | 0.013 | -0.104 | -0.054 |