Drop frame from H2O cluster¶
Syntax¶
_h2oframe _remove framename
Description¶
_h2oframe _remove removes the specified H2O frame from the H2O cluster, including any data in that frame.
Example¶
Setup
. webuse iris, clear
. _h2oframe _put, into(iris)
Display all H2O frames on the cluster
. _h2oframe _dir
Drop a frame named iris
. _h2oframe _remove iris
Display all H2O frames on the cluster
. _h2oframe _dir