h2o.acos {h2o}R Documentation

Compute the arc cosine of x

Description

Compute the arc cosine of x

Usage

h2o.acos(x)

Arguments

x

An H2OFrame object.

See Also

Trig for the base R implementation, acos().

Examples

## Not run: 
h2o.init()
prostate_path <- system.file("extdata", "prostate.csv", package = "h2o")
prostate <- h2o.uploadFile(path = prostate_path)
h2o.acos(prostate[, 2])

## End(Not run)

[Package h2o version 3.44.0.3 Index]