Converts an H2O column into a numeric value column.

as.numeric(x)

Arguments

x

a column from an H2OFrame data set.

...

Further arguments to be passed from or to other methods.

Examples

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