Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update CRAN version #521

Merged
merged 1 commit into from
Sep 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# All files are checked into the repo with LF
* text=auto
# These files are checked out using LF locally
configure.ac eol=lf
2 changes: 1 addition & 1 deletion R-package/DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Imports:
LinkingTo:
Rcpp,
RcppEigen
RoxygenNote: 7.1.2
RoxygenNote: 7.2.3
Suggests:
testthat,
knitr,
Expand Down
4 changes: 4 additions & 0 deletions R-package/NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
* Allow the other criterion for model selection: AUC for (multinomial) logistic regression such as the area under the curve (AUC).
* Simplify the C++ code structure.
* Fix note "Specified C++11: please update to current default of C++17" in CRAN.
* Support no-intercept GLM model by param 'fit.intercept'.
* Allow to restrict the range of estimation for beta by param 'beta.high' and 'beta.low'.
* Fix a bug when support.size is 0.
* Add cite message when load 'abess'.

# abess 0.4.6

Expand Down
2 changes: 1 addition & 1 deletion R-package/R/utility.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.onAttach <-
function(libname, pkgname) {
packageStartupMessage("\n Thank you for using abess! To acknowledge our work, please cite the package:")
packageStartupMessage("\n Zhu J, Wang X, Hu L, Huang J, Jiang K, Zhang Y, Lin S, Zhu J (2022). abess: A Fast Best Subset Selection Library in Python and R. Journal of Machine Learning Research, 23(202), 17. https://www.jmlr.org/papers/v23/21-1060.html.")
packageStartupMessage("\n Zhu J, Wang X, Hu L, Huang J, Jiang K, Zhang Y, Lin S, Zhu J (2022). 'abess: A Fast Best Subset Selection Library in Python and R.' Journal of Machine Learning Research, 23(202), 1-7. https://www.jmlr.org/papers/v23/21-1060.html.")
}

match_support_size <- function(object, support.size) {
Expand Down
2 changes: 1 addition & 1 deletion R-package/man/abess-package.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions R-package/man/abess.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading