Learn R Programming

Luminescence (version 0.7.1)

smooth_RLum: Smoothing of data

Description

Function calls the object-specific smooth functions for provided RLum S4-class objects.

Usage

smooth_RLum(object, ...)
"smooth_RLum"(object, ...)

Arguments

object
RLum (required): S4 object of class RLum
...
further arguments passed to the specifc class method

Value

An object of the same type as the input object is provided

Methods (by class)

  • list: Returns a list of RLum objects that had been passed to smooth_RLum

Function version

0.1.0 (2017-01-24 21:10:47)

How to cite

Kreutzer, S. (2017). smooth_RLum(): Smoothing of data. Function version 0.1.0. In: Kreutzer, S., Dietze, M., Burow, C., Fuchs, M.C., Schmidt, C., Fischer, M., Friedrich, J. (2017). Luminescence: Comprehensive Luminescence Dating Data Analysis. R package version 0.7.1. https://CRAN.R-project.org/package=Luminescence

Details

The function provides a generalised access point for specific RLum objects. Depending on the input object, the corresponding function will be selected. Allowed arguments can be found in the documentations of the corresponding RLum class. The smoothing is based on an internal function called .smoothing.

See Also

RLum.Data.Curve, RLum.Analysis

Examples

Run this code

##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 smoothing
plot_RLum(curve)
plot_RLum(smooth_RLum(curve))

Run the code above in your browser using DataLab