Usage
h2o.quantile(x, probs = c(0.001, 0.01, 0.1, 0.25, 0.333, 0.5, 0.667, 0.75,
0.9, 0.99, 0.999), combine_method = c("interpolate", "average", "avg",
"low", "high"), weights_column = NULL, ...)## S3 method for class 'H2OFrame':
quantile(x, probs = c(0.001, 0.01, 0.1, 0.25, 0.333, 0.5,
0.667, 0.75, 0.9, 0.99, 0.999), combine_method = c("interpolate", "average",
"avg", "low", "high"), weights_column = NULL, ...)
Arguments
x
An H2OFrame
object with a single numeric column.
probs
Numeric vector of probabilities with values in [0,1].
combine_method
How to combine quantiles for even sample sizes. Default is to do linear interpolation.
E.g., If method is "lo", then it will take the lo value of the quantile. Abbreviations for average, low, and high are acceptable (avg, lo, hi).
weights_column
(Optional) String name of the observation weights column in x or an H2OFrame
object with a single numeric column of observation weights.
...
Further arguments passed to or from other methods.