-
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.
Merge pull request #44 from dpc10ster/cran2-fix
Cran2 fixed # Reason for revised submission * This is an update to CRAN version 1.3.1 which installed with no errors, warnings, or notes (2020-01-13) on all platforms. * Recently it was brought to my attention (by Kurt Hornik <[email protected]>) that the package was generating errors on `R-devel` (>r77865) running on several Linux platforms. * The errors were identified as likely due to the new default behavior for option `stringsAsFactors = FALSE` in functions `data.frame()` and `read.table()`. * This update (V1.3.2) corrects those errors.
- Loading branch information
Showing
25 changed files
with
206 additions
and
217 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Package: RJafroc | ||
Type: Package | ||
Title: Analyzing Diagnostic Observer Performance Studies | ||
Version: 1.3.1 | ||
Date: 2020-01-31 | ||
Version: 1.3.2 | ||
Date: 2020-03-06 | ||
Authors@R: c(person("Dev", "Chakraborty", role = c("cre","aut","cph"), email = "[email protected]"), | ||
person("Peter", "Philips", role = c("aut"), email = "[email protected]"), | ||
person("Xuetong", "Zhai", role = c("aut"), email = "[email protected]"), | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,22 @@ | ||
# RJafroc 1.3.1 | ||
|
||
## After initial comments from CRAN | ||
# RJafroc 1.3.2 | ||
|
||
## After email from Kurt Hornik <[email protected]> | ||
* Created new branch off `cran2` 1.3.1 called `cran2-fix` | ||
* Bumped version to 1.3.2 | ||
* RJafroc failing on Linux | ||
+ r-devel-linux-x86_64-debian-clang | ||
+ r-devel-linux-x86_64-debian-gcc | ||
+ r-devel-linux-x86_64-fedora-clang (this showed up post email) | ||
+ r-devel-linux-x86_64-fedora-gcc (this showed up post email) | ||
* Has to do with new default (R 4.0.0) for `options(stringsAsFactors = FALSE)` | ||
* To recreate this problem in `R CMD check` I set `options(stringsAsFactor=FALSE)` near beginning of each plotting function (3 functions) using `data.frame()` and `levels()` to convert strings to factor levels | ||
* To make problem go away I explicitly specified `stringsAsFactor=TRUE` in each call to `data.frame()` where necessary. | ||
* Removed examples from FitCorCbmRoc() as they were generating excessive CPU time NOTES. Will need to add these to vignettes, later. | ||
* Ran `R CMD check` successfully | ||
* Ran all checks in ScriptsForCranSubmission.R | ||
* Submitted to CRAN | ||
|
||
## After initial comments from CRAN upon submission of version 1.3.0 | ||
* Changes to DESCRIPTION file (removed emphasis characters and url before <) | ||
* Added a sentence on improved sample size routines | ||
* Bumped version to 1.3.1 | ||
|
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
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
Oops, something went wrong.