This function simply allowing to merge RLum.Data.Curve
objects without touching the objects itself. Merging is always applied on
the 2nd column of the data matrix of the object.
Supported merge operations are RLum.Data.Curve
"sum"
All count values will be summed up using the function rowSums.
"mean"
The mean over the count values is calculated using the function
rowMeans.
"median"
The median over the count values is calculated using the function
matrixStats::rowMedians.
"sd"
The standard deviation over the count values is calculated using the function
matrixStats::rowSds.
"var"
The variance over the count values is calculated using the function
matrixStats::rowVars.
"min"
The min values from the count values is chosen using the function
matrixStats::rowMins.
"max"
The max values from the count values is chosen using the function
matrixStats::rowMins.
"append"
Appends count values of all curves to one combined data curve. The channel width
is automatically re-calculated, but requires a constant channel width of the
original data.
"-"
The row sums of the last objects are subtracted from the first object.
"*"
The row sums of the last objects are multiplied with the first object.
"/"
Values of the first object are divided by row sums of the last objects.