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",
  ...
)

Arguments

x

moleculeFilt object, created by molecule_filter function

min_num

minimum number of observations for filtering (only affects graph coloring/labeling, no data filtering is performed in this step)

title

title for plot

xlabel

x-axis label for plot

ylabel

y-axis label for plot

...

other arguments

Value

plotly object

Author

Amanda White

Examples

if (FALSE) {
filter_obj <- molecule_filter(examplePeakData)
plot(filter_obj, min_num=2)
}