This function provides easy plotting for mass and ratio traces from IRMSs scan data. It can be called either directly with a set of iso_file
objects, or with a data frame prepared for plotting scan data (see iso_prepare_scan_plot_data
).
iso_plot_scan_data(...) # S3 method for iso_file_list iso_plot_scan_data( iso_files, data = character(), type, filter = NULL, x_interval = c(), y_interval = c(), panel = file_id, color = data, linetype = NULL, label = data, ... ) # S3 method for data.frame iso_plot_scan_data( df, type, x_interval = c(), y_interval = c(), panel = file_id, color = data, linetype = NULL, label = data, ... )
... | additional parameters passed on to iso_plot_data |
---|---|
iso_files | collection of iso_file objects |
data | which masses and ratios to plot (e.g. |
type | which type of scan data to plot. Only required if there are more than one type of scan data. |
filter | any filter condition to apply to the data beyond the masses/ratio selection (param |
x_interval | optional constraints on x axis values |
y_interval | optional constraints on y axis values |
panel | whether to panel the data by anything. If using a single parameter (e.g. |
color | variable to use for color aesthetic for the plot or constant value for the point and line color |
linetype | variable to use for linetype aesthetic for the plot or constant value for the line type |
label | this is primarily of use for turning the generated ggplots into interactive plots via |
df | a data frame of the scan data prepared for plotting (see |
Other plot functions:
iso_mark_calibration_range()
,
iso_mark_outliers()
,
iso_mark_value_range()
,
iso_mark_x_range()
,
iso_plot_continuous_flow_data()
,
iso_plot_data()
,
iso_plot_dual_inlet_data()
,
iso_plot_raw_data()
,
iso_plot_ref_peaks()
,
iso_plot_residuals()
,
iso_prepare_continuous_flow_plot_data()
,
iso_prepare_dual_inlet_plot_data()
,
iso_prepare_scan_plot_data()