Description Usage Arguments Value See Also
This function exports the passed in iso_files to Excel. The different kinds of data (raw data, file info, methods info, etc.) are exported to separate tabs within the excel file. Use the various include_...
parameters to specify what information to include. Note that in rare instances where vectorized data columns exist in the file information (e.g. measurement_info), they are concatenated with ', ' in the excel export. Note that the openxlsx package required for this export is not installed automatically as part of isoreader. Please install it manually if missing using install.packages("openxlsx")
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | iso_export_to_excel(
iso_files,
filepath,
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(),
with_ratios = NULL,
quiet = default(quiet)
)
|
iso_files |
collection of iso_file objects |
filepath |
the path (folder and filename) to the export file. The correct file extension is automatically added if not already in the filename, i.e. filename can be provided with or without extension. |
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 |
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 |
returns the iso_files object invisibly for use in pipelines
Other export functions:
iso_export_to_feather()
,
iso_save()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.