Plot descriptive statistics

plot_stats(
  plot_dat,
  what = "M",
  stat = "mean",
  ignore_chr = NULL,
  samples = NULL,
  n_col = NULL,
  n_row = NULL
)

Arguments

plot_dat

results from get_stats

what

Can be M or C. Default M

stat

Can be mean or median. Default mean

ignore_chr

Chromsomes to ignore. Default NULL

samples

Use only these samples. Default NULL

n_col

number of columns. Passed to `facet_wrap`

n_row

number of rows. Passed to `facet_wrap`

Value

ggplot2 object

Details

plot descriptive statistics results from get_stats

See also

Examples

data('methrix_data') gs = get_stats(methrix_data)
#> -Finished in: 0.517s elapsed (0.518s cpu)
plot_stats(gs)