create_table0: Create table zero

Description Usage Arguments Value Examples

View source: R/create.R

Description

Extract from filt_df object the number of study observations excluded with respect to each exclusion criteria

Usage

1
create_table0(filt_df)

Arguments

filt_df

list with the data and flist objetcs

Value

table0 data.frame with the number of study observations excluded with respect to each exclusion criteria

Examples

 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)

rdosreis/table0 documentation built on Jan. 7, 2020, 5:43 p.m.