expectation_box {hypervolume} | R Documentation |
Hyperbox expectation
Description
Generates expectation hypervolume corresponding to an axis-aligned hyperbox that minimally encloses the data.
Usage
expectation_box(input, point.density = NULL, num.samples = NULL, use.random = FALSE)
Arguments
input |
A m x n matrix or data frame, where m is the number of observations and n is the dimensionality. |
point.density |
The point density of the output expectation. If |
num.samples |
The number of points in the output expectation. If |
use.random |
If |
Value
A Hypervolume-class
object corresponding to the expectation.
Examples
data(penguins,package='palmerpenguins')
penguins_no_na = as.data.frame(na.omit(penguins))
penguins_adelie = penguins_no_na[penguins_no_na$species=="Adelie",
c("bill_length_mm","bill_depth_mm","flipper_length_mm")]
e_box <- expectation_box(penguins_adelie)