Description Usage Arguments Value See Also
This function exports the passed in iso_files to the Python and R shared feather file format. The different kinds of data (raw data, file info, methods info, etc.) are exported to separate feather files that are saved with the provided filepath_prefix
as prefix. All are only exported if the corresponding include_
parameter is set to TRUE
and only for data types for which this type of data is available and was read (see iso_read_dual_inlet
, iso_read_continuous_flow
for details on read parameters). Note that in rare instances where vectorized data columns exist in the file information (e.g. measurement_info), they are concatenated with ', ' in feather output. Note that the feather package required for this export is not installed automatically as part of isoreader. Please install it manually if missing using install.packages("feather")
.
1 2 3 4 5 6 7 8 9 10 11 12 13 | iso_export_to_feather(
iso_files,
filepath_prefix,
include_file_info = everything(),
include_raw_data = everything(),
include_standards = !!enexpr(include_method_info),
include_resistors = !!enquo(include_method_info),
include_vendor_data_table = everything(),
include_problems = everything(),
with_explicit_units = FALSE,
include_method_info = everything(),
quiet = default(quiet)
)
|
iso_files |
collection of iso_file objects |
filepath_prefix |
what to use as the prefix for the feather file names (e.g. name of the data collection or current date) |
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 |
with_explicit_units |
whether to include units in the column headers of the returned data frame instead of the column data types (see |
include_method_info |
deprecated in favor of the more specific include_standards and include_resistors |
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 |
returns the iso_files object invisibly for use in pipelines
Other export functions:
iso_export_to_excel()
,
iso_save()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.