Nothing
      library(SuperLearner)
library(ck37r)
# Only run test if necessary suggested packages are installed.
pkg_suggests = c("testthat", "MASS")
if (!all(suppressWarnings(sapply(pkg_suggests, require, quietly = TRUE,
                                 character.only = TRUE))))
  return()
data(Boston, package = "MASS")
set.seed(1)
# This will generate some warnings about glm fitted probabilities.
suppressWarnings({
  cvsl = CV.SuperLearner(Boston$chas, subset(Boston, select = -chas),
                         family = binomial(),
                         cvControl = list(V = 2, stratifyCV = T),
                         SL.library = c("SL.mean", "SL.glm"))
})
plot_roc(cvsl, y = Boston$chas)
# Deprecated version, will generate a warning.
suppressWarnings({
  cvsl_plot_roc(cvsl, y = Boston$chas)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.