Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ck37/ck37r

R functions for project setup, data cleaning, machine learning, SuperLearner, parallelization, and targeted learning.
https://github.com/ck37/ck37r

h2oai parallelization slurm superlearner targeted-learning tmle

Last synced: about 2 months ago
JSON representation

R functions for project setup, data cleaning, machine learning, SuperLearner, parallelization, and targeted learning.

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r init_knitr, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "images/README-",
fig.width = 4,
fig.height = 3,
echo = TRUE
)
```

# ck37r

[![Build Status](https://travis-ci.org/ck37/ck37r.svg?branch=master)](https://travis-ci.org/ck37/ck37r)
[![Build Status: appveyor](https://ci.appveyor.com/api/projects/status/github/ck37/ck37r?branch=master&svg=true)](https://ci.appveyor.com/project/ck37/ck37r/history)
[![codecov](https://codecov.io/gh/ck37/ck37r/branch/master/graph/badge.svg)](https://codecov.io/gh/ck37/ck37r)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/ck37r)](https://cran.r-project.org/package=ck37r)

My R toolkit for organizing analysis projects, cleaning data for machine learning, parallelizing code for multiple cores or in a SLURM cluster, and extended functionality for [SuperLearner](http://github.com/ecpolley/SuperLearner) and [TMLE](github.com/cran/tmle). Some of the SuperLearner functions may eventually be migrated into the SuperLearner package.

## Installation

Install the [latest release from CRAN](https://cran.r-project.org/package=ck37r):

```{r cran-installation, eval = FALSE}
install.packages("ck37r")
```

Install the development version from github (recommended):

```{r gh-installation, eval = FALSE}
# install.packages("remotes")
remotes::install_github("ck37/ck37r")
```

```{r library, include=FALSE}
library(ck37r)
```

## Functions

- **Project Utilities**
* `import_csvs` - import all CSV files in a given directory.
* `load_all_code` - source() all R files in a given directory.
* `load_packages` - load a list of packages; for the ones that fail it can attempt to install them automatically from CRAN, then load them again.
- **Machine Learning**
* `categoricals_to_factors` - convert numeric categoricals into factors.
* `factors_to_indicators` - convert all factors in a dataframe to series of indicators (one-hot encoding).
* `impute_missing_values` - impute missing values in a dataframe (median for numerics and mode for factors, GLRM, or k-nearest neighbors), add missingness indicators.
* `missingness_indicators` - return a matrix of missingness indicators for a dataframe, (optionally) omitting any constant or collinear columns.
* `rf_count_terminal_nodes` - count the number of terminal nodes in each tree in a random forest. That information can then be used to grid-search the maximum number of nodes allowed in a Random Forest (along with mtry).
* `standardize` - standardize a dataset (center, scale), optionally omitting certain variables.
* `vim_corr` - rudimentary variable importance based on correlation with an outcome.
- **Parallelization**
* `parallelize` - starts a multicore or multinode parallel cluster. Automatically detects parallel nodes in a SLURM environment, which makes code work seemlessly on a laptop or a cluster.
* `stop_cluster` - stops a cluster started by `parallelize()`.
- **SuperLearner**
* `auc_table` - table of cross-validated AUCs for each learner in an ensemble, including SE, CI, and p-value. Supports SuperLearner and CV.SuperLearner objects.
* `gen_superlearner` - create a SuperLearner and CV.SuperLearner function setup to transparently use a certain parallelization configuration.
* `cvsl_weights` - table of the meta-weight distribution for each learner in a CV.SuperLearner analysis.
* `cvsl_auc` - cross-validated AUC for a CV.SuperLearner analysis.
* `plot_roc` - ROC plot with AUC and CI for a SuperLearner or CV.SuperLearner object.
* `plot.SuperLearner` - plot risk estimates and CIs for a SuperLearner, similar to CV.Superlearner except without SL or Discrete SL.
* `prauc_table` - table of cross-validated PR-AUCs for each learner in an ensemble, including SE and CI. Supports SuperLearner and CV.SuperLearner objects.
* `sl_stderr` - calculate standard error for each learner's risk in SL.
* `SL.h2o_auto()` - wrapper for h2o's automatic machine learning system, to be added to SuperLearner.
* `SL.bartMachine2()` - wrapper for bartMachine, to be added to SuperLearner.
- **TMLE**
* `tmle_parallel` - allows the SuperLearner estimation in TMLE to be customized, esp. to support parallel estimation via mcSuperLearner and snowSuperLearner.
* `setup_parallel_tmle` - helper function to start a cluster and setup SuperLearner and tmle_parallel to use the created cluster.
- **h2o**
* `h2o_init_multinode()` - function to start an h2o cluster on multiple nodes
from within R, intended for use on SLURM or other multi-node clusters.

## Examples

### Impute missing values

```{r impute_missing_values}
# Load a test dataset.
# TODO: need to switch to a different dataset.
data(PimaIndiansDiabetes2, package = "mlbench")

# Check for missing values.
colSums(is.na(PimaIndiansDiabetes2))

# Impute missing data and add missingness indicators.
# Don't impute the outcome though.
result = impute_missing_values(PimaIndiansDiabetes2, skip_vars = "diabetes")

# Confirm we have no missing data.
colSums(is.na(result$data))
```

#### Impute with GLRM

We are using default hyperparameters here, but it would be best to optimize the hyperparameters.

```{r impute_glrm}

#############
# Generalized low-rank model imputation via h2o.
result2 = impute_missing_values(PimaIndiansDiabetes2, type = "glrm", skip_vars = "diabetes")

# Confirm we have no missing data.
colSums(is.na(result2$data))

```

### Load packages

This loads a vector of packages, automatically installing any packages that aren't already installed.

```{r load_packages}
# Load these 4 packages and install them if necessary.
load_packages(c("MASS", "SuperLearner", "tmle", "doParallel"), auto_install = TRUE)
```

### Random Forest: count terminal nodes

We estimate one standard Random Forest first and examine how many terminal nodes are in each decision tree. We take the maximum of that as the most data-adaptive Random Forest in terms of decision tree size, then compare to Random Forests in which they are restricted to have smaller decision trees. This allows the SuperLearner to explore under vs. over-fitting for a Random Forest. See Segal (2004) and Segal & Xiao (2011) for details on overfitting in Random Forests.

```{r rf_count_terminal_nodes}
library(SuperLearner)
library(ck37r)

data(Boston, package = "MASS")

set.seed(1)
(sl = SuperLearner(Boston$medv, subset(Boston, select = -medv), family = gaussian(),
cvControl = list(V = 3L),
SL.library = c("SL.mean", "SL.glm", "SL.randomForest")))

summary(rf_count_terminal_nodes(sl$fitLibrary$SL.randomForest_All$object))

(max_terminal_nodes = max(rf_count_terminal_nodes(sl$fitLibrary$SL.randomForest_All$object)))

# Now run create.Learner() based on that maximum.

# It is often handy to convert to log scale of a hyperparameter before testing a ~linear grid.
# NOTE: -0.7 ~ log(0.5) which is the multiplier that yields sqrt(max)
(maxnode_seq = unique(round(exp(log(max_terminal_nodes) * exp(c(-0.6, -0.35, -0.15, 0))))))

rf = create.Learner("SL.randomForest", detailed_names = TRUE,
name_prefix = "rf",
params = list(ntree = 100L), # fewer trees for testing speed only.
tune = list(maxnodes = maxnode_seq))

# We see that an RF with simpler decision trees performs better than the default.
(sl = SuperLearner(Boston$medv, subset(Boston, select = -medv), family = gaussian(),
cvControl = list(V = 3L),
SL.library = c("SL.mean", "SL.glm", rf$names)))
```

### Parallel TMLE

```{r tmle-parallel, eval=F}
library(ck37r)
library(tmle)

# Use multiple cores as available.
ck37r::setup_parallel_tmle()

# Basic SL library.
sl_lib = c("SL.mean", "SL.rpart", "SL.glmnet")

# Set a parallel-compatible seed so cross-validation folds are deterministic.
set.seed(1, "L'Ecuyer-CMRG")
# Just an example -- we haven't defined A or W in this code.
result = run_tmle(Y = Y, A = A, W = W, family = "binomial",
g.SL.library = sl_lib, Q.SL.library = sl_lib)
```

### SuperLearner AUC Table

This will return an AUC table for all learners. It does not include Discrete SL or SuperLearner as those require CV.SuperLearner.

```{r sl_auc_table}
library(SuperLearner)
library(ck37r)

data(Boston, package = "MASS")

set.seed(1)
y = as.numeric(Boston$medv > 23)
sl = SuperLearner(Y = y,
X = subset(Boston, select = -medv),
family = binomial(),
cvControl = list(V = 2L, stratifyCV = TRUE),
SL.library = c("SL.mean", "SL.lm", "SL.glm"))

auc_table(sl, y = y)
```

### SuperLearner plot of risk estimates

This is similar to CV.SuperLearner's plot except SuperLearner cannot estimate risk for the Discrete SL and SuperLearner, so those must be omitted here.

```{r plot_sl}
library(SuperLearner)
library(ck37r)

data(Boston, package = "MASS")

set.seed(1)
(sl = SuperLearner(Boston$medv, subset(Boston, select = -medv),
family = gaussian(),
cvControl = list(V = 2),
SL.library = c("SL.mean", "SL.lm")))

plot(sl, y = Boston$medv)
```

### SuperLearner ROC plot

```{r sl_plot_roc}
library(SuperLearner)
library(ck37r)

data(Boston, package = "MASS")

y = as.numeric(Boston$medv > 23)
set.seed(1)
(sl = SuperLearner(Y = y,
X = subset(Boston, select = -medv),
family = binomial(),
cvControl = list(V = 2L, stratifyCV = TRUE),
SL.library = c("SL.mean", "SL.lm", "SL.glm")))

plot_roc(sl, y = y)
```

### SuperLearner PR-AUC table

Reports on the precision-recall AUC for each learner, and includes the estimated standard error and 95% confidence interval.

```{r sl_prauc_table}
library(SuperLearner)
library(ck37r)

data(Boston, package = "MASS")

y = as.numeric(Boston$medv > 23)
set.seed(1)
sl = SuperLearner(Y = y,
X = subset(Boston, select = -medv),
family = binomial(),
cvControl = list(V = 2L, stratifyCV = TRUE),
SL.library = c("SL.mean", "SL.lm", "SL.glm"))

prauc_table(sl, y = y)
```

### CV.SuperLearner AUC

This will return the AUC inference for the CV.SuperLearner.

```{r cvsl_auc}
library(SuperLearner)
library(ck37r)

data(Boston, package = "MASS")

set.seed(1)
cvsl = CV.SuperLearner(Y = as.numeric(Boston$medv > 23),
X = subset(Boston, select = -medv),
family = binomial(),
cvControl = list(V = 2L, stratifyCV = TRUE),
SL.library = c("SL.mean", "SL.lm", "SL.glm"))
cvsl_auc(cvsl)
```

### CV.SuperLearner AUC table

This will return an AUC table for all learners, plus DiscreteSL and the SuperLearner.

```{r cvsl_auc_table}
library(SuperLearner)
library(ck37r)

data(Boston, package = "MASS")

set.seed(1)
cvsl = CV.SuperLearner(Y = as.numeric(Boston$medv > 23),
X = subset(Boston, select = -medv),
family = binomial(),
cvControl = list(V = 2, stratifyCV = TRUE),
SL.library = c("SL.mean", "SL.lm", "SL.glm"))
auc_table(cvsl)
```

### CV.SuperLearner plot ROC

```{r cvsl_plot_roc}
library(SuperLearner)
library(ck37r)

data(Boston, package = "MASS")

set.seed(1)
cvsl = CV.SuperLearner(Y = as.numeric(Boston$medv > 23),
X = subset(Boston, select = -medv),
family = binomial(),
cvControl = list(V = 2L, stratifyCV = TRUE),
SL.library = c("SL.mean", "SL.lm", "SL.glm"))
plot_roc(cvsl)
```

### CV.SuperLearner weight table

Returns summary statistics (mean, sd, min, max) on the distribution of the weights assigned to each learner across SuperLearner ensembles. This makes it easier to understand the stochastic nature of the SL learner weights and to see how often certain learners are used.

```{r cvsl_weights}
library(SuperLearner)
library(ck37r)

data(Boston, package = "MASS")

set.seed(1)
cvsl = CV.SuperLearner(Y = as.numeric(Boston$medv > 23),
X = subset(Boston, select = -medv),
family = binomial(),
cvControl = list(V = 2L, stratifyCV = TRUE),
SL.library = c("SL.mean", "SL.lm", "SL.glm"))
cvsl_weights(cvsl)
```

### CV.SuperLearner PR-AUC table

Reports on the precision-recall AUC for each learner, as well as the SuperLearner and Discrete Superlearner. Includes the estimated standard error and 95% confidence interval.

```{r cvsl_prauc}
library(SuperLearner)
library(ck37r)

data(Boston, package = "MASS")

set.seed(1)
cvsl = CV.SuperLearner(Y = as.numeric(Boston$medv > 23),
X = subset(Boston, select = -medv),
family = binomial(),
cvControl = list(V = 2L, stratifyCV = TRUE),
SL.library = c("SL.mean", "SL.lm", "SL.glm"))
prauc_table(cvsl)
```

More examples to be added.

## Acknowledgments

The ROC plot is inspired by similar base plot functionality created by [Alan Hubbard](http://hubbard.berkeley.edu).

## References

Breiman, L. (2001). Random forests. Machine learning, 45(1), 5-32.

Dudoit, S., & van der Laan, M. J. (2005). Asymptotics of cross-validated risk estimation in estimator selection and performance assessment. Statistical Methodology, 2(2), 131-154.

LeDell, E., Petersen, M., & van der Laan, M. (2015). Computationally efficient confidence intervals for cross-validated area under the ROC curve estimates. Electronic journal of statistics, 9(1), 1583.

Polley EC, van der Laan MJ (2010) Super Learner in Prediction. U.C. Berkeley Division of Biostatistics Working Paper Series. Paper 226. http://biostats.bepress.com/ucbbiostat/paper266/

Segal, M. R. (2004). Machine learning benchmarks and random forest regression.

Segal, M., & Xiao, Y. (2011). Multivariate random forests. Wiley Interdisciplinary Reviews: Data Mining and Knowledge Discovery, 1(1), 80-87.

Sing, T., Sander, O., Beerenwinkel, N., & Lengauer, T. (2005). ROCR: visualizing classifier performance in R. Bioinformatics, 21(20), 3940-3941.

van der Laan, M. J., Polley, E. C. and Hubbard, A. E. (2007) Super Learner. Statistical Applications of Genetics and Molecular Biology, 6, article 25. http://www.degruyter.com/view/j/sagmb.2007.6.issue-1/sagmb.2007.6.1.1309/sagmb.2007.6.1.1309.xml

van der Laan, M. J., & Rose, S. (2011). Targeted learning: causal inference for observational and experimental data. Springer Science & Business Media.

van der Laan, M. J., & Rubin, D. (2006). Targeted Maximum Likelihood Learning. The International Journal of Biostatistics, 2(1), 1-38.