powered by
Reads raw CSV files generated by DualPAM software, calculates electron transport rate (ETR) values, and returns a cleaned dataset. Customization may be needed for non-DualPAM devices.
read_dual_pam_data( csv_path, remove_recovery = TRUE, etr_factor = 0.84, fraction_photosystem_I = 0.5, fraction_photosystem_II = 0.5 )
A `data.table` with processed data and calculated ETR values.
File path to the CSV file.
Logical. Removes recovery measurements if TRUE. Default is TRUE.
TRUE
Numeric. Factor for ETR calculation. Default is 0.84.
0.84
Numeric. Relative distribution of absorbed PAR to photosystem I. Default is 0.5.
0.5
Numeric. Relative distribution of absorbed PAR to photosystem II. Default is 0.5.
Calculates ETR using: $$\text{ETR} = \text{PAR} \cdot \text{ETR-Factor} \cdot \text{Fraction of Photosystem (I or II)} \cdot \text{Yield (I or II)}$$
A detailed documentation can be found under https://github.com/biotoolbox/pam?tab=readme-ov-file#read_dual_pam_data
Heinz Walz GmbH. (2024). DUAL-PAM-100 DUAL-PAM/F MANUAL, 5th Edition, April 2024, Chapter 7 (pp. 162-172). Heinz Walz GmbH, Effeltrich, Germany. Available at: https://www.walz.com/files/downloads/manuals/dual-pam-100/DualPamEd05.pdf
path <- file.path(system.file("extdata", package = "pam"), "20240925.csv") data <- read_dual_pam_data(path)
Run the code above in your browser using DataLab