Nothing
## load data
data(ExampleData.BINfileData, envir = environment())
object <- Risoe.BINfileData2RLum.Analysis(CWOSL.SAR.Data, pos = 1)
test_that("input validation", {
testthat::skip_on_cran()
expect_error(plot_DetPlot("error"),
"'object' should be of class 'RLum.Analysis'")
expect_error(plot_DetPlot(set_RLum("RLum.Analysis")),
"'object' cannot be an empty RLum.Analysis")
expect_error(plot_DetPlot(object, signal.integral.min = "error"),
"'signal.integral.min' should be a positive integer scalar")
expect_error(plot_DetPlot(object, signal.integral.min = 1,
signal.integral.max = 1),
"'signal.integral.max' must be greater than 'signal.integral.min'")
expect_error(plot_DetPlot(object, signal.integral.min = 1,
signal.integral.max = 2,
background.integral.min = 900,
background.integral.max = 1000,
analyse_function = "error",
verbose = FALSE),
"'analyse_function' should be one of 'analyse_SAR.CWOSL'")
})
test_that("plot_DetPlot", {
testthat::skip_on_cran()
## simple run with default
SW({
results <- expect_s4_class(plot_DetPlot(
object,
method = "shift",
signal.integral.min = 1,
signal.integral.max = 3,
background.integral.min = 900,
background.integral.max = 1000,
analyse_function.control = list(
fit.method = "LIN"),
n.channels = 2),
"RLum.Results")
})
## simple run with default but no plot
results <- expect_s4_class(plot_DetPlot(
object,
method = "shift",
signal.integral.min = 1,
signal.integral.max = 3,
background.integral.min = 900,
background.integral.max = 1000,
analyse_function.control = list(
fit.method = "LIN"),
n.channels = 2,
verbose = FALSE,
plot = FALSE),
"RLum.Results")
## test with trim channels
results <- expect_s4_class(plot_DetPlot(
object,
method = "shift",
signal.integral.min = 1,
signal.integral.max = 3,
background.integral.min = 900,
background.integral.max = 1000,
analyse_function.control = list(
fit.method = "LIN",
trim_channels = TRUE
),
n.channels = 2,
verbose = FALSE,
plot = FALSE),
"RLum.Results")
## test self call with multi core
SW({
results <- expect_s4_class(plot_DetPlot(
object = list(x = object, y = object),
method = "shift",
signal.integral.min = 1,
signal.integral.max = 3,
background.integral.min = 900,
background.integral.max = 1000,
analyse_function.control = list(
fit.method = "LIN",
trim_channels = TRUE
),
multicore = 1,
n.channels = 2,
verbose = TRUE,
plot = FALSE),
"RLum.Results")
})
## simple run with default
results <- expect_s4_class(plot_DetPlot(
object,
method = "expansion",
signal.integral.min = 1,
signal.integral.max = 3,
background.integral.min = 900,
background.integral.max = 1000,
analyse_function.control = list(
fit.method = "LIN"),
verbose = FALSE,
n.channels = 2),
"RLum.Results")
## try with NA values
object@records[[2]][,2] <- 1
object@records[[4]][,2] <- 1
object@records[[6]][,2] <- 1
object@records[[8]][,2] <- 1
results <- expect_s4_class(suppressWarnings(plot_DetPlot(
object,
method = "expansion",
signal.integral.min = 1,
signal.integral.max = 3,
background.integral.min = 900,
background.integral.max = 1000,
analyse_function.control = list(
fit.method = "EXP"),
verbose = FALSE,
n.channels = 1)),
"RLum.Results")
SW({
## n.channels not set
expect_message(plot_DetPlot(object,
method = "shift",
signal.integral.min = 5,
signal.integral.max = 6,
background.integral.min = 10,
background.integral.max = 50,
analyse_function.control = list(
fit.method = "LIN"),
verbose = TRUE),
"'n.channels' not specified, set to 3")
## analyse_pIRIRSequence
tmp <- subset(object, recordType != "IRSL" & ID != 1)
plot_DetPlot(
tmp,
method = "expansion",
signal.integral.min = 1,
signal.integral.max = 2,
background.integral.min = 900,
background.integral.max = 1000,
analyse_function = "analyse_pIRIRSequence",
analyse_function.control = list(
sequence.structure = c("TL", "IR50"),
fit.method = "LIN"),
respect_RC.Status = TRUE,
n.channels = 2)
expect_warning(plot_DetPlot(
tmp,
method = "expansion",
signal.integral.min = 1,
signal.integral.max = 2,
background.integral.min = 900,
background.integral.max = 1000,
plot.single = TRUE,
n.channels = 2),
"'plot.single' is deprecated, use 'plot_singlePanels' instead")
## analyse_pIRIRSequence on an inconsistent object
suppressWarnings( # ignore additional warnings from fit_DoseResponseCurve()
expect_error(
expect_warning(plot_DetPlot(
object,
signal.integral.min = 1,
signal.integral.max = 2,
background.integral.min = 900,
background.integral.max = 1000,
analyse_function = "analyse_pIRIRSequence",
analyse_function.control = list(
fit.method = "LIN"),
verbose = FALSE,
n.channels = 1),
"An error occurred, analysis skipped"),
"No valid results produced")
)
})
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.