Last chance! 50% off unlimited learning
Sale ends in
source_spct
and response_spct
objects
contains photon-based or energy-based data.is_photon_based(x)
is_energy_based(x)
is_photon_based
returns TRUE
if its argument is a a
source_spct
or a response_spct
object that contains photon
base data and FALSE
if such an object does not contain such data,
but returns NA
for any other R object, including those belonging
other generic_spct
-derived classes.
is_energy_based
returns TRUE
if its argument is a a source_spct
or
a response_spct
object that contains energy base data and FALSE
if such an
object does not contain such data, but returns NA
for any other R object,
including those belonging other generic_spct
-derived classesis_absorbance_based
is_photon_based(sun.spct)
my.spct <- dplyr::select(sun.spct, w.length, s.e.irrad)
is.source_spct(my.spct)
is_photon_based(my.spct)
is_energy_based(sun.spct)
my.spct <- dplyr::select(sun.spct, w.length, s.q.irrad)
is.source_spct(my.spct)
is_energy_based(my.spct)
Run the code above in your browser using DataLab