bin_RLum.Data | R Documentation |
The function provides a generalised access point for specific RLum.Data objects. Depending on the input object, the corresponding function will be selected. Allowed arguments can be found in the documentations of the corresponding RLum.Data class.
bin_RLum.Data(object, ...)
object |
RLum.Data (required):
S4 object of class |
... |
further arguments passed to the specific class method |
An object of the same type as the input object provided.
0.2.0
Currently only RLum.Data
objects of class RLum.Data.Curve
and RLum.Data.Spectrum are supported.
Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
RLum.Data.Curve, RLum.Data.Spectrum
## load example data
data(ExampleData.CW_OSL_Curve, envir = environment())
## create RLum.Data.Curve object from this example
curve <-
set_RLum(
class = "RLum.Data.Curve",
recordType = "OSL",
data = as.matrix(ExampleData.CW_OSL_Curve)
)
## plot data without and with 2 and 4 channel binning
plot_RLum(curve)
plot_RLum(bin_RLum.Data(curve, bin_size = 2))
plot_RLum(bin_RLum.Data(curve, bin_size = 4))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.