plot heatmap of NA values

plot_NA_heatmap(data, config, limitrows = 10000, distance = "binary")

Examples



istar <- sim_lfq_data_peptide_config()
#> creating sampleName from fileName column
#> Warning: no nr_children column specified in the data, adding column nr_children and setting to 1.
#> completing cases
config <- istar$config
analysis <- istar$data


tmp <- plot_NA_heatmap(analysis, config)
#> rows with NA's: 16; all rows :28
stopifnot(class(tmp) == "pheatmap")
tmp <- plot_NA_heatmap(analysis, config, distance = "euclidean")
#> rows with NA's: 16; all rows :28
stopifnot(class(tmp) == "pheatmap")