Skip to content

Commit

Permalink
update version 0.4.8 for R
Browse files Browse the repository at this point in the history
  • Loading branch information
bbayukari authored Sep 11, 2023
2 parents 6b2980a + f52075d commit e4fba50
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion R-package/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: abess
Type: Package
Title: Fast Best Subset Selection
Version: 0.4.7
Version: 0.4.8
Date: 2023-02-19
Authors@R: c(
person(given = "Jin", family = "Zhu", email = "[email protected]", role = c("aut", "cre"), comment = c(ORCID = "0000-0001-8550-5822")),
Expand Down
11 changes: 7 additions & 4 deletions R-package/NEWS.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# abess 0.4.8
* 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'.
* Add cite message when load 'abess'.
* Fix a bug when support.size is 0.

# abess 0.4.7

* 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
4 changes: 2 additions & 2 deletions R-package/R/abess.R
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ abess <- function(x, ...) UseMethod("abess")
#' @param fit.intercept A boolean value indicating whether to fit an intercept.
#' We assume the data has been centered if \code{fit.intercept = FALSE}.
#' Default: \code{fit.intercept = FALSE}.
#' @param beta.low A single value specifying the lower bound of \eqn{\beta}. Default is \code{-.Machine$double.xmax}
#' @param beta.high A single value specifying the upper bound of \eqn{\beta}. Default is \code{.Machine$double.xmax}
#' @param beta.low A single value specifying the lower bound of \eqn{\beta}. Default is \code{-.Machine$double.xmax}.
#' @param beta.high A single value specifying the upper bound of \eqn{\beta}. Default is \code{.Machine$double.xmax}.
#' @param c.max an integer splicing size. Default is: \code{c.max = 2}.
#' @param weight Observation weights. When \code{weight = NULL},
#' we set \code{weight = 1} for each observation as default.
Expand Down
4 changes: 2 additions & 2 deletions R-package/man/abess.Rd

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

0 comments on commit e4fba50

Please sign in to comment.