get_var_buckets {explore} | R Documentation |
Put variables into "buckets" to create a set of plots instead one large plot
Description
Put variables into "buckets" to create a set of plots instead one large plot
Usage
get_var_buckets(data, bucket_size = 100, var_name_target = NA, var_name_n = NA)
Arguments
data |
A dataset |
bucket_size |
Maximum number of variables in one bucket |
var_name_target |
Name of the target variable (if defined) |
var_name_n |
Name of the weight (n) variable (if defined) |
Value
Buckets as a list
Examples
get_var_buckets(iris)
get_var_buckets(iris, bucket_size = 2)
get_var_buckets(iris, bucket_size = 2, var_name_target = "Species")
[Package explore version 1.3.1 Index]