h2o.kurtosis {h2o} | R Documentation |
Kurtosis of a column
Description
Obtain the kurtosis of a column of a parsed H2O data object.
Usage
h2o.kurtosis(x, ..., na.rm = TRUE)
kurtosis.H2OFrame(x, ..., na.rm = TRUE)
Arguments
x |
An H2OFrame object. |
... |
Further arguments to be passed from or to other methods. |
na.rm |
A logical value indicating whether |
Value
Returns a list containing the kurtosis for each column (NaN for non-numeric columns).
Examples
## Not run:
library(h2o)
h2o.init()
prostate_path <- system.file("extdata", "prostate.csv", package = "h2o")
prostate <- h2o.uploadFile(path = prostate_path)
h2o.kurtosis(prostate$AGE)
## End(Not run)
[Package h2o version 3.44.0.3 Index]