Obtain the kurtosis of a column of a parsed H2O data object.
h2o.kurtosis(x, ..., na.rm = TRUE) kurtosis.H2OFrame(x, ..., na.rm = TRUE)
| x | An H2OFrame object. | 
|---|---|
| ... | Further arguments to be passed from or to other methods. | 
| na.rm | A logical value indicating whether  | 
Returns a list containing the kurtosis for each column (NaN for non-numeric columns).
# NOT RUN { h2o.init() prosPath <- system.file("extdata", "prostate.csv", package="h2o") prostate.hex <- h2o.uploadFile(path = prosPath) h2o.kurtosis(prostate.hex$AGE) # }