Last chance! 50% off unlimited learning
Sale ends in
Add event N to regression table
# S3 method for tbl_regression
add_nevent(x, location = NULL, ...)# S3 method for tbl_uvregression
add_nevent(x, location = NULL, ...)
a tbl_regression
or tbl_uvregression
table
location to place Ns. When "label"
total Ns are placed
on each variable's label row. When "level"
level counts are placed on the
variable level for categorical variables, and total N on the variable's label
row for continuous.
Not used
Example 1
Example 2
# NOT RUN {
# Example 1 ----------------------------------
add_nevent.tbl_regression_ex1 <-
trial %>%
select(response, trt, grade) %>%
tbl_uvregression(
y = response,
method = glm,
method.args = list(family = binomial),
) %>%
add_nevent()
# Example 2 ----------------------------------
add_nevent.tbl_regression_ex2 <-
glm(response ~ age + grade, trial, family = binomial) %>%
tbl_regression(exponentiate = TRUE) %>%
add_nevent(location = "level")
# }
Run the code above in your browser using DataLab