Histogram summarizing missigness

missigness_histogram(
  x,
  config,
  showempty = FALSE,
  factors = config$table$factor_keys_depth(),
  alpha = 0.1
)

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
xx <- complete_cases(analysis, config)
#> completing cases
pl <- missigness_histogram(xx, config)
#> Warning: >>>> deprecated! <<<< 
#> 
#>           use summarize_stats_factors instead.
#> completing cases
#> isotopeLabel ~ group_

pl <- missigness_histogram(analysis, config, showempty=FALSE)
#> Warning: >>>> deprecated! <<<< 
#> 
#>           use summarize_stats_factors instead.
#> completing cases
#> isotopeLabel ~ group_
stopifnot("ggplot" %in% class(pl))
pl <- missigness_histogram(analysis, config, showempty=TRUE)
#> Warning: >>>> deprecated! <<<< 
#> 
#>           use summarize_stats_factors instead.
#> completing cases
#> isotopeLabel ~ group_
stopifnot("ggplot" %in% class(pl))