set_RLum | R Documentation |
The function provides a generalised access point for specific RLum objects. Depending on the given class, the corresponding method to create an object from this class will be selected. Allowed additional arguments can be found in the documentations of the corresponding RLum class:
RLum.Data.Curve,
RLum.Data.Image,
RLum.Data.Spectrum,
RLum.Analysis,
RLum.Results
set_RLum(class, originator, .uid = create_UID(), .pid = NA_character_, ...)
class |
character (required): name of the S4 class to create, must correspond to one of the RLum classes. |
originator |
character (automatic): contains the name of the calling function (the function that produces this object); can be set manually. |
.uid |
character (automatic):
unique ID for this object, by default set using the internal C++ function
|
.pid |
character (with default): option to provide a parent id for nesting at will. |
... |
further arguments passed to the specific class method |
An object of the specified RLum class.
0.3.0
Kreutzer, S., 2025. set_RLum(): General setter function for RLum S4 class objects. Function version 0.3.0. In: Kreutzer, S., Burow, C., Dietze, M., Fuchs, M.C., Schmidt, C., Fischer, M., Friedrich, J., Mercier, N., Philippe, A., Riedesel, S., Autzen, M., Mittelstrass, D., Gray, H.J., Galharret, J., Colombo, M., Steinbuch, L., Boer, A.d., 2025. Luminescence: Comprehensive Luminescence Dating Data Analysis. R package version 1.0.1. https://r-lum.github.io/Luminescence/
Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany) , RLum Developer Team
RLum.Data.Curve, RLum.Data.Image, RLum.Data.Spectrum, RLum.Analysis, RLum.Results
## produce empty objects from each class
set_RLum(class = "RLum.Data.Curve")
set_RLum(class = "RLum.Data.Spectrum")
set_RLum(class = "RLum.Data.Spectrum")
set_RLum(class = "RLum.Analysis")
set_RLum(class = "RLum.Results")
## produce a curve object with arbitrary curve values
object <- set_RLum(
class = "RLum.Data.Curve",
curveType = "arbitrary",
recordType = "OSL",
data = matrix(c(1:100,exp(-c(1:100))),ncol = 2))
## plot this curve object
plot_RLum(object)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.