-
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.
[CRAN] Prepare release v1.0.0 to CRAN (#7)
* CHG: refine readme; update the description; add licence file; update the ignoring tag * CHG: refine README content * CHG: refine the r code by enhancing readbility, reformatting, and reducing redundant arguments * CHG: refine the rcpp code and description * CHG: add p parameter as mandatory; update the test cases and fix example code * CHG: refine wordings; update the manunal * FIX: correct typos * FIX: correct the bugs from CRAN result * CHG: enhance the example code * FIX: correct the codecov url * CHG: refine code based on the review comments * CHG: refine the par issue * CHG: refine example code by the CRAN review * FIX: regenerate the manual * Update README.md * CHG: update the release note
- Loading branch information
Showing
21 changed files
with
912 additions
and
549 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 |
---|---|---|
|
@@ -7,4 +7,6 @@ | |
^\.github$ | ||
^codecov\.yml$ | ||
^.*\.gcno$ | ||
^NEWS$ | ||
^NEWS$ | ||
LICENSE | ||
\.github |
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,6 @@ | ||
Package: QuantRegGLasso | ||
Title: Adaptively Weighted Group Lasso for Semiparametic Quantile Rgression Models | ||
Version: 0.5.0 | ||
Title: Adaptively Weighted Group Lasso for Semiparametric Quantile Regression Models | ||
Version: 1.0.0 | ||
Authors@R: c(person( | ||
given = "Wen-Ting", | ||
family = "Wang", | ||
|
@@ -12,23 +12,29 @@ Authors@R: c(person( | |
given = "Wei-Ying", | ||
family = "Wu", | ||
email = "[email protected]", | ||
role = "aut" | ||
), | ||
role = c("aut") | ||
), | ||
person( | ||
given = "Toshio", | ||
family = "Honda", | ||
email="[email protected]", | ||
rol = c("aut")), | ||
email = "[email protected]", | ||
role = c("aut") | ||
), | ||
person( | ||
given = "Ching-Kang", | ||
family = "Ing", | ||
email="[email protected]", | ||
rol = c("aut"), | ||
role = c("aut"), | ||
comment = c(ORCID = "0000-0003-1362-8246") | ||
) | ||
) | ||
Description: Address adaptively weighted group Lasso procedures of quantile regression problems. It excels in simultaneous variable selection and structure identification for varying coefficient quantile regression models, as well as additive quantile regression models featuring ultra-high dimensional covariates. (Toshio Honda, Ching-Kang Ing, Wei-Ying Wu, 2019,. <DOI: 10.3150/18-BEJ1091>). | ||
License: GPL-3 | ||
Description: Implements an adaptively weighted group Lasso procedure for simultaneous variable selection and structure identification in varying | ||
coefficient quantile regression models and additive quantile regression models with ultra-high dimensional covariates. The methodology, grounded | ||
in a strong sparsity condition, establishes selection consistency under certain weight conditions. To address the challenge of tuning parameter | ||
selection in practice, a BIC-type criterion named high-dimensional information criterion (HDIC) is proposed. The Lasso procedure, guided by | ||
HDIC-determined tuning parameters, maintains selection consistency. Theoretical findings are strongly supported by simulation studies. | ||
(Toshio Honda, Ching-Kang Ing, Wei-Ying Wu, 2019, <DOI:10.3150/18-BEJ1091>). | ||
License: GPL (>= 2) | ||
LazyData: true | ||
ByteCompile: true | ||
BugReports: https://github.com/egpivo/QuantRegGLasso/issues | ||
|
@@ -42,7 +48,6 @@ Suggests: | |
rmarkdown, | ||
testthat (>= 2.1.0) | ||
SystemRequirements: GNU make | ||
VignetteBuilder: knitr | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.2.3 | ||
Roxygen: list(markdown = TRUE) | ||
|
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.