-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework the creation of RejectionCriteria in analyse_SAR.TL().
The code that creates the RejectionCriteria data frame has been entirely rewritten using data.table, resulting in cleaner and also more performant code. Moreover, this change allows to solve an additional testcase: analyse_SAR.TL(object, dose.points = 2, signal.integral.min = 210, signal.integral.max = 220, sequence.structure = c("SIGNAL", "BACKGROUND")) which previously failed with: Error in dimnames(x) <- dn : length of 'dimnames' [2] not equal to array extent due to the use of sapply(), which in this case ended up producing a matrix instead of a vector.
- Loading branch information
Showing
3 changed files
with
288 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters