Last chance! 50% off unlimited learning
Sale ends in
Function calls the object-specific bin functions for RLum.Data S4 class objects.
bin_RLum.Data(object, ...)
An object of the same type as the input object is provided
RLum.Data (required):
S4 object of class RLum.Data
further arguments passed to the specific class method
0.2.0
Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany) , RLum Developer Team
Kreutzer, S., 2023. bin_RLum.Data(): Channel binning - method dispatcher. Function version 0.2.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., 2023. Luminescence: Comprehensive Luminescence Dating Data Analysis. R package version 0.9.21. https://CRAN.R-project.org/package=Luminescence
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.
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))
Run the code above in your browser using DataLab