You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Validation in analyse_SAR.TL() should be improved to generate better error messages in these cases:
data(ExampleData.BINfileData, envir= environment())
object<- Risoe.BINfileData2RLum.Analysis(TL.SAR.Data, pos=3)
analyse_SAR.TL(list(object, object),
sequence.structure= c("SIGNAL", "BACKGROUND"))
# Error in h(simpleError(msg, call)) : # error in evaluating the argument 'object' in selecting a method for function 'get_RLum':# argument "signal.integral.min" is missing, with no default
analyse_SAR.TL(list(object, object),
signal.integral.min=210, signal.integral.max=220,
sequence.structure= c("SIGNAL", "BACKGROUND"))
# Error in FUN(X[[i]], ...) : # argument "dose.points" is missing, with no default
analyse_SAR.TL(list(object, object),
signal.integral.min=210, signal.integral.max=220, dose.points=2,
sequence.structure= c("SIGNAL", "BACKGROUND"))
# Error in dimnames(x) <- dn : # length of 'dimnames' [2] not equal to array extent
analyse_SAR.TL(list(object, object),
signal.integral.min=210, signal.integral.max=220, dose.points= c(2, 2),
sequence.structure= c("SIGNAL", "BACKGROUND"))
# Error in `$<-.data.frame`(`*tmp*`, "Dose", value = c(2, 2)) : # replacement has 2 rows, data has 7
The text was updated successfully, but these errors were encountered:
mcol
changed the title
problems in analyse_SAR.TL
uncaught errors in analyse_SAR.TL()
Aug 16, 2024
analyse_SAR.TL(object, signal.integral.min=2, signal.integral.max=3,
sequence.structure= c("SIGNAL", "BACKGROUND"))
# Error in plot.window(...) : need finite 'ylim' values
analyse_SAR.TL(object, signal.integral.min=2, signal.integral.max=3,
sequence.structure= c("SIGNAL"))
# Error in if (is.na(RecyclingRatio) == FALSE) { : # the condition has length > 1
analyse_SAR.TL(object, signal.integral.min=2, signal.integral.max=2,
sequence.structure=c("SIGNAL", "EXCLUDE", "BACKGROUND", "EXCLUDE", "PREHEAT",
"EXCLUDE", "BACKGROUND", "SIGNAL", "EXCLUDE", "EXCLUDE",
"EXCLUDE", "EXCLUDE"))
# Error : [get_RLum()] At least one 'record.id' is invalid!# Error in h(simpleError(msg, call)) : # error in evaluating the argument 'object' in selecting a method for function 'get_RLum':# [calc_TLLxTxRatio()] Data types of Lx and Tx data differ!
Validation in
analyse_SAR.TL()
should be improved to generate better error messages in these cases:The text was updated successfully, but these errors were encountered: