# Read a Licor file, select just a few columns, and then split it by the value
# of the `plot` column
licor_file <- read_gasex_file(
PhotoGEA_example_file_path('ball_berry_1.xlsx')
)
licor_file <- licor_file[, c('plot', 'species', 'Qin', 'A', 'gsw'), TRUE]
split(
licor_file,
list(licor_file[,'species'], licor_file[,'plot']),
drop = TRUE
)
Run the code above in your browser using DataLab