-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove old reindex definition * disable tests for travis cache * restyle + update site; re-enable tests * update DOI + site * minor readme/pkgdown update * fix broken link * three screeners and tests * oops found & fixed error * line 5 of corP and corRank * `sl3_task` bug fix; complexity & efficiency improvement (#246) * initial density and pooled hazards code * port tests * survival fixes + update documentation * re-style * implement semiparametric variance estimator * add test sketch for pooled hazards densities * fix merge conflicts * finish pooled hazards density test * re-style * adapt to changes in try-error data structure * fixed arguments not passed bug * Revert "fixed arguments not passed bug" This reverts commit b1358f1. * added learner caret * fixed formatting * added Learner GAM * fixed formatting * added gam to binomial learners test * fixed argument passing bug * fixed argument passing bug for svm * update contributors, mostly rebuild docs site * remove old reindex definition * improved complexity and efficiency of data treatment * debugged changes to sl3_task * modified DESCRIPTION * bug fix (flag_name) * bug fix (empty task) * bug fix (columns treatment and mapping) * fixed case where node list is given * fixed case where outcome is multivariate * complexity reduction * change task creation in Lrnr_density_discretize + re-style code * test refinement * fix for a special case * revert changes to survival utils * Subset covariates correctly for sublearners (#250) * fix covariate subsetting * only delay subset if task is delayed * don't count NA as a value when guessing variable types from data (#251) * Overhaul data preprocessing (#252) * don't count NA as a value when guessing variable types from data * overhaul data preprocessing * Convex combination with `Lrnr_nnls` (#249) convex combo with test * bump version; update docs * update site * add NEWS * use --ignore-installed in travis pip call * minor version bump; fix use of here::here; re-style; update docs and site * update DOI for v1.3.5 and update docs/site
- Loading branch information
1 parent
e09eb63
commit 84f6423
Showing
229 changed files
with
9,457 additions
and
9,940 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
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,6 @@ | ||
Package: sl3 | ||
Title: Pipelines for Machine Learning and Super Learning | ||
Version: 1.3.0 | ||
Version: 1.3.5 | ||
Authors@R: c( | ||
person("Jeremy", "Coyle", email = "[email protected]", | ||
role = c("aut", "cre", "cph"), | ||
|
@@ -40,7 +40,8 @@ Imports: | |
methods, | ||
ggplot2, | ||
stringr, | ||
digest | ||
digest, | ||
imputeMissings | ||
Suggests: | ||
testthat, | ||
rmarkdown, | ||
|
@@ -102,5 +103,5 @@ LazyLoad: yes | |
VignetteBuilder: | ||
knitr, | ||
R.rsp | ||
RoxygenNote: 6.1.1 | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.0.1 | ||
Roxygen: list(markdown = TRUE, r6 = FALSE) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# sl3 1.3.1 | ||
* Overhaul of data preprocessing. | ||
* New screening methods and convex combination in `Lrnr_nnls`. | ||
* Bug fixes including covariate subsetting and better handling of NAs. | ||
* Package and documentation cleanup. | ||
|
||
# sl3 1.3.0 | ||
* Fixes incorrect handling of missingness in the automatic imputation procedure. | ||
* Adds new standard learners, including from the `gam` and `caret` packages. | ||
* Adds custom learners for conditional density estimation, including | ||
semiparametric methods based on conditional mean and conditional mean/variance | ||
estimation as well as generalized functionality for density estimation via a | ||
pooled hazards approach. | ||
|
||
# sl3 1.2.0 | ||
* Default metalearners based on task outcome types. | ||
* Handling of imputation internally in task objects. | ||
* Addition of several new learners, including from the `gbm`, `earth`, | ||
`polspline` packages. | ||
* Fixing errors in existing learners (e.g., subtle parallelization in `xgboost` | ||
and `ranger`). | ||
* Support for multivariate outcomes | ||
* Sets default cross-validation to be revere-style. | ||
* Support for cross-validated super learner and variable importance. | ||
|
||
# sl3 1.1.0 | ||
* A full-featured and stable release of the project. | ||
* Numerous learners are included and many bugs have been fixed relative to | ||
earlier versions (esp v1.0.0) of the software. | ||
|
||
# sl3 1.0.0 | ||
* An initial stable release. |
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
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
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
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.