Plot mass filter object

# S3 method for massFilt
plot(
  x,
  min_mass = NA,
  max_mass = NA,
  title = NA,
  xlabel = "Mass",
  ylabel = "Count",
  ...
)

Arguments

x

massFilt object, created by mass_filter function

min_mass

(optional) minimum mass, for highlighting graph

max_mass

(optional) maximum mass, for highlighting graph

title

title

xlabel

x axis label

ylabel

y axis label

...

other arguments

Value

plotly object

Author

Amanda White

Examples

if (FALSE) {
filter_obj <- mass_filter(examplePeakData)
plot(filter_obj, min_mass = 200, max_mass = 800)
}