Description Usage Arguments Value See Also
View source: R/aggregate_data.R
This function aggregates all isofiles data and returns it in a large data frame with nested columns for each type of information (file_info, raw_data, etc.). For targeted retrieval of specific data iso_get_raw_data
, iso_get_file_info
, iso_get_vendor_data_table
, etc. are much faster and easier to work with. This function is primarily useful for downstream processing pipelines that want to carry all information along. To unnest
any of the specific data types (e.g. raw_data
), make sure to filter first for the files that have this data type available (e.g. filter(has_raw_data)
). Exclude specific types of information by setting its include...
parameter to NULL
(Note: for historical reasons, setting it to FALSE
will also include the information).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | iso_get_all_data(
iso_files,
include_file_info = everything(),
include_raw_data = everything(),
include_standards = everything(),
include_resistors = everything(),
include_vendor_data_table = everything(),
include_problems = NULL,
gather = FALSE,
with_explicit_units = with_units,
with_units = FALSE,
with_ratios = NULL,
quiet = default(quiet)
)
|
iso_files |
collection of iso_file objects |
include_file_info |
which file information to include (see |
include_raw_data |
which columns from the raw data to include. Use |
include_standards |
which columns from the standards info to include. Use |
include_resistors |
which columns from the resistors info to include. Use |
include_vendor_data_table |
which columns from the vendor data table to include. Use |
include_problems |
which columns from problems to include. Use |
gather |
whether to gather raw data into long format (e.g. for ease of use in plotting). Not that the |
with_explicit_units |
whether to include units in the column headers of the returned data frame instead of the column data types (see |
with_units |
this parameter has been DEPRECATED with the introduction of unit-data types (see |
with_ratios |
deprecated, please use the |
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_messages_on and iso_turn_info_messages_off |
data_frame with file_ids, file_types and nested data frames for each data type (file_info, raw_data, vendor_data_table, etc.)
Other data retrieval functions:
iso_get_bgrd_data()
,
iso_get_file_info()
,
iso_get_raw_data()
,
iso_get_resistors()
,
iso_get_standards()
,
iso_get_vendor_data_table()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.