Skip to contents

get_info() returns information about the number of sample types, missing values types and grouping (if applied).

Usage

get_info(dat)

Arguments

dat

a raw_data object. Output of read_data() function.

See also

Examples

path <- get_example_data("small_biocrates_example.xls")
dat <- read_data(path)
cat(get_info(dat))
#> Data contains 11 sample types and 3 NA types.

dat <- add_group(dat, "group")
cat(get_info(dat))
#> Data contains 11 sample types and 3 NA types.
#> Groupping by: "group" ( levels).