Add N to regression table
Add N to regression table
## S3 method for class 'tbl_regression' add_n(x, location = NULL, ...) ## S3 method for class 'tbl_uvregression' add_n(x, location = NULL, ...)
x |
a |
location |
location to place Ns. When |
... |
Not used |
Example 1
Example 2
# Example 1 ---------------------------------- add_n.tbl_regression_ex1 <- trial %>% select(response, age, grade) %>% tbl_uvregression( y = response, method = glm, method.args = list(family = binomial), hide_n = TRUE ) %>% add_n(location = "label") # Example 2 ---------------------------------- add_n.tbl_regression_ex2 <- glm(response ~ age + grade, trial, family = binomial) %>% tbl_regression(exponentiate = TRUE) %>% add_n(location = "level")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.