Function calls object-specific merge functions for RLum S4 class objects.
merge_RLum(objects, ...)
objects | |
---|---|
... | further arguments that one might want to pass to the specific merge function |
Return is the same as input objects as provided in the list.
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.
Empty list elements (NULL
) are automatically removed from the input list
.
object | corresponding merge function | |
RLum.Data.Curve | : | merge_RLum.Data.Curve |
RLum.Analysis | : | merge_RLum.Analysis |
RLum.Results | : | merge_RLum.Results |
So far not for every RLum
object a merging function exists.
0.1.2
Sebastian Kreutzer, Geography & Earth Sciences, Aberystwyth University (United Kingdom) , RLum Developer Team
Kreutzer, S., 2021. merge_RLum(): General merge function for RLum S4 class objects. Function version 0.1.2. In: Kreutzer, S., Burow, C., Dietze, M., Fuchs, M.C., Schmidt, C., Fischer, M., Friedrich, J., Mercier, N., Riedesel, S., Autzen, M., Mittelstrass, D., Gray, H.J., 2021. Luminescence: Comprehensive Luminescence Dating Data Analysis. R package version 0.9.11. https://CRAN.R-project.org/package=Luminescence
##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$CA1)#> #> [calc_CentralDose] #> #> ----------- meta data ---------------- #> n: 62 #> log: TRUE #> ----------- dose estimate ------------ #> central dose [Gy]: 65.71 #> SE [Gy]: 3.05 #> rel. SE [%]: 4.65 #> ----------- overdispersion ----------- #> OD [Gy]: 22.79 #> SE [Gy]: 2.27 #> OD [%]: 34.69 #> SE [%]: 3.46 #> ------------------------------------- #>#> #> [calc_CentralDose] #> #> ----------- meta data ---------------- #> n: 62 #> log: TRUE #> ----------- dose estimate ------------ #> central dose [Gy]: 65.71 #> SE [Gy]: 3.05 #> rel. SE [%]: 4.65 #> ----------- overdispersion ----------- #> OD [Gy]: 22.79 #> SE [Gy]: 2.27 #> OD [%]: 34.69 #> SE [%]: 3.46 #> ------------------------------------- #>