hypervolume_join {hypervolume} | R Documentation |
Concatenate hypervolumes
Description
Combines multiple hypervolumes or hypervolume lists into a single HypervolumeList suitable for analysis or plotting.
Usage
hypervolume_join(...)
Arguments
... |
One or more objects of class |
Value
A HypervolumeList
containing all hypervolumes in all arguments.
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")]
penguins_chinstrap = penguins_no_na[penguins_no_na$species=="Chinstrap",
c("bill_length_mm","bill_depth_mm","flipper_length_mm")]
hv1 = hypervolume_box(penguins_adelie,name='Adelie')
hv2 = hypervolume_box(penguins_chinstrap,name='Chinstrap')
hvs_joined = hypervolume_join(hv1, hv2)
[Package hypervolume version 3.1.4 Index]