Learn R Programming

Luminescence (version 0.4.1)

merge_RLum: General merge function for RLum S4 class objects

Description

Function calls object-specific merge functions for RLum S4 class objects.

Usage

merge_RLum(objects, ...)

Arguments

objects
list of RLum (required): list of S4 object of class RLum
...
further arguments that one might want to pass to the specific merge function

Value

  • Return is the same as input objects as provided in the list.

Function version

0.1 (2014-12-20 16:22:40)

Details

The function provides a generalised access point for merge specific RLum objects. Depending on the input object, the corresponding merge function will be selected. Allowed arguments can be found in the documentations of each merge function. lll{ object corresponding merge function RLum.Results : merge_RLum.Results }

References

#

See Also

merge_RLum.Results, RLum.Results,

Examples

Run this code
##Example based using data and from the calc_CentralDose() function

##load example data
data(ExampleData.DeValues, envir = environment())

##apply the central dose model 1st time 
temp1 <- calc_CentralDose(ExampleData.DeValues)

##apply the central dose model 2nd time
temp2 <- calc_CentralDose(ExampleData.DeValues)

##merge the results and store them in a new object
temp.merged <- get_RLum.Results(merge_RLum(objects = list(temp1, temp2)))

Run the code above in your browser using DataLab