Get information about data
get_info.Rd
get_info()
returns information about the number of sample types,
missing values types and grouping (if applied).
Arguments
- dat
a
raw_data
object. Output ofread_data()
function.
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).