Plot molecule filter data
# S3 method for moleculeFilt
plot(
x,
min_num = NA,
title = NA,
xlabel = "Minimum Number of Samples for which a Peak is Observed",
ylabel = "Number of Peaks",
...
)
moleculeFilt object, created by molecule_filter
function
minimum number of observations for filtering (only affects graph coloring/labeling, no data filtering is performed in this step)
title for plot
x-axis label for plot
y-axis label for plot
other arguments
plotly object
if (FALSE) {
filter_obj <- molecule_filter(examplePeakData)
plot(filter_obj, min_num=2)
}