View source: R/hypervolume_join.R
hypervolume_join | R Documentation |
Combines multiple hypervolumes or hypervolume lists into a single HypervolumeList suitable for analysis or plotting.
hypervolume_join(...)
... |
One or more objects of class |
A HypervolumeList
containing all hypervolumes in all arguments.
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.