Display summary of an eemlist object
# S3 method for eemlist print(x, ...)
x | An object of class |
---|---|
... | Extra arguments. |
A data frame containing summarized information on EEMs.
Character. Sample name of the EEM,
Numerical. Minimum excitation wavelength
Numerical. Maximum excitation wavelength
Numerical. Minimum emission wavelength
Numerical. Maximum emission wavelength
Logical. TRUE if the sample has been blank corrected.
Logical. TRUE if scattering bands have been removed from the sample.
Logical. TRUE if the sample has been corrected for inner-filter effect.
Logical. TRUE if the sample has been Raman normalized.
Character. The name of the manufacturer.
folder <- system.file("extdata/cary", package = "eemR") eem <- eem_read(folder, recursive = TRUE, import_function = "cary") print(eem)#> sample ex_min ex_max em_min em_max is_blank_corrected is_scatter_corrected #> 1 nano 220 450 230 600 FALSE FALSE #> 2 sample1 220 450 230 600 FALSE FALSE #> 3 sample2 220 450 230 600 FALSE FALSE #> 4 sample3 220 450 230 600 FALSE FALSE #> 5 blank 220 450 230 600 FALSE FALSE #> 6 s1 220 450 230 600 FALSE FALSE #> is_ife_corrected is_raman_normalized #> 1 FALSE FALSE #> 2 FALSE FALSE #> 3 FALSE FALSE #> 4 FALSE FALSE #> 5 FALSE FALSE #> 6 FALSE FALSE