Obtain the variance of a column of a parsed H2O data object.
Usage
h2o.var(x, y = NULL, na.rm = FALSE, use)
var(x, y = NULL, na.rm = FALSE, use)
Arguments
x
An H2O Frame object.
y
NULL (default) or a column of an H2O Frame object. The default is equivalent to y = x (but more efficient).
na.rm
logical. Should missing values be removed?
use
An optional character string to be used in the presence of missing values. This must be one of the following strings. "everything", "all.obs", or "complete.obs".
See Also
var for the base R implementation. h2o.sd for standard deviation.