colnames: Returns the column names of an H2OFrame

View source: R/frame.R

colnamesR Documentation

Returns the column names of an H2OFrame

Description

Returns the column names of an H2OFrame

Usage

colnames(x, do.NULL = TRUE, prefix = "col")

Arguments

x

An H2OFrame object.

do.NULL

logical. If FALSE and names are NULL, names are created.

prefix

for created names.

Examples

## Not run: 
library(h2o)
h2o.init()

iris_hf <- as.h2o(iris)
colnames(iris_hf)  # Returns "Sepal.Length" "Sepal.Width"  "Petal.Length" "Petal.Width"  "Species"

## End(Not run)

h2o documentation built on Aug. 9, 2023, 9:06 a.m.