Description Usage Arguments Value Examples
Adds data frame to create exploratory data analysis plots
1 | push_dataset(arena, dataset, target, label)
|
arena |
live or static arena object |
dataset |
data frame used for EDA plots |
target |
name of target variable |
label |
label of dataset |
Updated arena object
1 2 3 4 5 6 7 8 9 10 11 | library("DALEX")
library("arenar")
library("dplyr", quietly=TRUE, warn.conflicts = FALSE)
# create live arena with only one dataset
apartments <- DALEX::apartments
arena <- create_arena(live=TRUE) %>% push_dataset(apartments, "m2.price", "apartment")
print(arena)
# add another dataset
HR <- DALEX::HR
arena <- arena %>% push_dataset(HR, "status", "HR")
print(arena)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.