h2o (version 3.28.0.2)

as.numeric: Convert H2O Data to Numeric

Description

Converts an H2O column into a numeric value column.

Usage

as.numeric(x)

Arguments

x

a column from an H2OFrame data set.

...

Further arguments to be passed from or to other methods.

Examples

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

Run the code above in your browser using DataCamp Workspace