Skip to contents

Drop Ct values with no data

Usage

epict_drop_na_ct(obs)

Arguments

obs

A data.frame with a numeric ct_value variable.

Value

The input data.table with NA values dropped.

Author

Sam Abbott

Examples

obs <- data.frame(ct_value = c(1, NA, 2))
epict_drop_na_ct(obs)
#>    ct_value
#> 1:        1
#> 2:        2