Quick Start Guide

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

Introduction

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()

Data files

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()

Dual Inlet Files

# 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")

Continuous Flow Files

# 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")

Scan Files

# 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")


Try the isoreader package in your browser

Any scripts or data that you put into this service are public.

isoreader documentation built on Nov. 19, 2021, 1:07 a.m.