Skip to contents

The tidy table does not need to contain missing data. This function re-establishes the missing observations in a sample.

Usage

complete_cases(lfqdata)

Arguments

lfqdata

LFQData object

Examples


bb <- sim_lfq_data_protein_config()
#> creating sampleName from file_name column
#> completing cases
#> completing cases done
#> setup done
lfq <- LFQData$new(bb$data, bb$config)
xx <- complete_cases(lfq)
#> completing cases
stopifnot(nrow(bb$data) <= nrow(xx))