Description Usage Arguments Value Examples
Extract from filt_df object the number of study observations excluded with respect to each exclusion criteria
1 | create_table0(filt_df)
|
filt_df |
list with the data and flist objetcs |
table0 data.frame with the number of study observations excluded with respect to each exclusion criteria
1 2 3 4 5 6 7 8 9 10 | df <- data.frame(a = rnorm(100),
b = rnorm(100),
c = sample(letters[1:10], size = 100, replace = TRUE))
lf <- list("a < 1.96",
"b < 1.96",
"c %in% letters[1:5] | abs(b) > 0.2")
filt_df <- filter_list(data = df, lfilters = lf)
create_table0(filt_df)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.