example <- system.file("extdata", "aci1.csv", package = "gasanalyzer")
# Read using GFS-3000 names and formatting:
gfs3000_old <- read_gfs(example, unified_names = FALSE)
# Read using unified column names:
gfs3000 <- read_gfs(example)
# Inspect the intercellular CO2:
gfs3000_old$ci
gfs3000$GasEx.Ci
# Recalculate data using default gas exchange equations:
gfs3000 <- recalculate(gfs3000, create_equations(c("default", "gfs3000")))
gfs3000$GasEx.Ci
Run the code above in your browser using DataLab