staRdom (version 1.0.8)

eem_exclude: Exclude complete wavelengths or samples form data set

Description

Outliers in all modes should be avoided. With this functions excitation or emission wavelengths as well as samples can be removed completely from your sample set.

Usage

eem_exclude(eem_list, exclude = list, verbose = FALSE)

Arguments

eem_list

object of class eemlist

exclude

list of three vectors, see details

verbose

states whether additional information is given in the command line

Value

object of class eemlist

Details

The argument exclude is a named list of three vectors. The names must be "ex", "em" and "sample". Each element contains a vector of wavelengths or sample names that are to be excluded from the data set.

Examples

Run this code
# NOT RUN {
data(eem_list)

exclude <- list("ex" = c(280,285,290,295),
"em" = c(),
"sample" = c("sample3","sample5","sample14")
)

eem_list_ex <- eem_exclude(eem_list, exclude)
# }

Run the code above in your browser using DataLab