Aggregate peak table from continous flow files. The return peak table has implicit units, to make the units explicit, use iso_make_units_explicit.

iso_get_peak_table(
  iso_files,
  select = everything(),
  include_file_info = NULL,
  with_explicit_units = FALSE,
  quiet = default(quiet)
)

Arguments

iso_files

collection of iso_file objects

select

which data columns to select - use c(...) to select multiple, supports all select syntax. By default, all columns are selected.

include_file_info

which file information to include (see iso_get_file_info). Use c(...) to select multiple, supports all select syntax including renaming columns.

with_explicit_units

whether to include units in the column headers of the returned data frame instead of the column data types (see iso_double_with_units). Note that any select conditions have to refer to the column names including the full units.

quiet

whether to display (quiet=FALSE) or silence (quiet = TRUE) information messages. Set parameter to overwrite global defaults for this function or set global defaults with calls to iso_turn_info_message_on and iso_turn_info_message_off

See also