Compute the arc cosine of x

h2o.acos(x)

Arguments

x

An H2OFrame object.

See also

acos for the base R implementation.

Examples

# NOT RUN {
h2o.init()
prosPath <- system.file("extdata", "prostate.csv", package="h2o")
prostate.hex <- h2o.uploadFile(path = prosPath)
h2o.acos(prostate.hex[,2])
# }