forked from cran/DMRnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8cd8734
commit 3a1a2d4
Showing
2 changed files
with
23 additions
and
6 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,3 +1,18 @@ | ||
|
||
# This is a resubmission of 0.3.4 | ||
|
||
The following NOTE from WINDOWS precheck **has been corrected**: | ||
|
||
* checking CRAN incoming feasibility ... [15s] NOTE | ||
Maintainer: 'Szymon Nowakowski <[email protected]>' | ||
|
||
Package CITATION file contains call(s) to personList() or | ||
as.personList(). Please use c() on person objects instead. | ||
Package CITATION file contains call(s) to citEntry(), citHeader() or | ||
citFooter(). Please use bibentry() instead. | ||
|
||
# Local checks | ||
|
||
## local R CMD check results | ||
There were no ERRORs, WARNINGs, or NOTEs. | ||
|
||
|
@@ -8,3 +23,5 @@ There seem to be no downstream dependencies: | |
devtools::revdep("DMRnet") | ||
# character(0) | ||
``` | ||
|
||
|
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,16 +1,16 @@ | ||
citHeader("To cite DMRnet in publications use:") | ||
|
||
citEntry(entry="Article", | ||
author = personList(as.person("Aleksandra Maj-Kańska"), | ||
as.person("Piotr Pokarowski"), | ||
as.person("Agnieszka Prochenka")), | ||
bibentry(bibtype="Article", | ||
author = c(person("Aleksandra","Maj-Kańska"), | ||
person("Piotr","Pokarowski"), | ||
person("Agnieszka","Prochenka")), | ||
title = "Delete or merge regressors for linear model selection", | ||
journal = "Electronic Journal of Statistics", | ||
year = "2015", | ||
volume = "9", | ||
number = "2", | ||
pages = "1749-1778", | ||
doi = "10.1214/15-EJS1050", | ||
header="To cite DMRnet in publications use:", | ||
textVersion = "Aleksandra Maj-Kańska, Piotr Pokarowski and Agnieszka Prochenka, 2015. Delete or merge regressors for linear model selection. Electronic Journal of Statistics 9(2): 1749-1778. doi:10.1214/15-EJS1050") | ||
|
||
|
||
|