Learn R Programming

Luminescence (version 0.4.1)

plot_RLum.Analysis: Plot function for an RLum.Analysis S4 class object

Description

The function provides a standardised plot output for curve data of an RLum.Analysis S4 class object

Usage

plot_RLum.Analysis(object, nrows = 3, ncols = 2, abline, combine = FALSE, 
    ...)

Arguments

object
RLum.Analysis (required): S4 object of class RLum.Analysis
nrows
integer (with default): sets number of rows for plot output
ncols
integer (with default): sets number of columns for plot output
abline
list (optional): allows to set similar ablines in each plot. This option uses the function do.call, meaning that every argument in the list has
combine
logical (with default): allows to combine all code{RLum.Data.Curve} objects in one single plot. Works only for RLum.Analysis that compri
...
further arguments and graphical parameters will be passed to the plot function. Supported arguments: main, mtext, log, lwd, lty type, pch, col<

Value

  • Returns multiple plots.

Function version

0.1.5 (2014-12-03 13:31:41)

Details

The function produces a multiple plot output. A file output is recommended (e.g., pdf).

References

#

See Also

plot, plot_RLum, plot_RLum.Data.Curve

Examples

Run this code
###load data
data(ExampleData.BINfileData, envir = environment())

##convert values for position 1
temp <- Risoe.BINfileData2RLum.Analysis(CWOSL.SAR.Data, pos=1)

##plot all values
plot_RLum.Analysis(temp)

##plot (combine) TL curves in one plot
temp.sel <- get_RLum.Analysis(temp, recordType = "TL", keep.object = TRUE)
plot_RLum.Analysis(temp.sel, combine = TRUE, norm = TRUE, main = "TL combined")

Run the code above in your browser using DataLab