dataFrame.header — get()

Description

The get() method of the header object returns the column names of the DataFrame.

Signature

dataFrame.header.get()
Scope
dataFrame
Family
header
Returns
mutates

Returns

columnNames ( string[] )
The name of the columns of the DataFrame.

Example

// get the header of a dataFrame
var columnNames = dataFrame.header.get();