knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
Isoreader supports various dual inlet, continuous flow, and scan file formats. This vignette shows how to get started reading these raw IRMS data files and exporting the information to Excel. For more details on isoreader functionality and each file type, please read the Full Examples vignettes. For more information on downstream processing with isoverse, check out the isoprocessor package.
# load isoreader package library(isoreader)
iso_turn_reader_caching_off()
For demonstration purposes, this vignette simply reads all supported dual inlet, continuous flow, and scan files that are bundled with the isoreader package. For a more detailed introduction to each file type, check out the specific vignettes for each:
# all available examples iso_get_reader_examples() %>% knitr::kable()
# read all available examples di_files <- iso_read_dual_inlet(iso_get_reader_examples_folder())
# save as r data storage (read back in with iso_read_dual_inlet) iso_save(di_files, filepath = "di_save")
# export to excel iso_export_to_excel(di_files, filepath = "di_export")
# read all available examples cf_files <- iso_read_continuous_flow(iso_get_reader_examples_folder())
# save as r data storage (read back in with iso_read_continuous_flow) iso_save(cf_files, filepath = "cf_save")
# export to excel iso_export_to_excel(cf_files, filepath = "cf_export")
# read all available examples scan_files <- iso_read_scan(iso_get_reader_examples_folder())
# save as r data storage (read back in with iso_read_scan) iso_save(scan_files, filepath = "scan_save")
# export to excel iso_export_to_excel(scan_files, filepath = "scan_export")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.