Description Usage Arguments Value Examples
Convert bin bounds data frame into R-tree structure using nested lists
1 | make_bin_list(bin_bounds, nbins)
|
bin_bounds |
Data frame of bin bounds; one row per bin, columns for lower and upper bound on each dimension |
nbins |
number of bins in each dimension |
R-tree nested list of bin boundaries
1 2 3 4 | iq_def <- iterative_quant_bin(data=iris, bin_cols=c("Sepal.Length","Sepal.Width","Petal.Width"),
nbins=c(3,2,2), output="definition",jit=rep(0.001,3))
iq_def$bin_bounds
make_bin_list(bin_bounds=iq_def$bin_bounds,nbins=c(3,2,2))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.