dataFrame.header — get()
Description
The get() method of the header object returns the column names of the DataFrame.
Signature
dataFrame.header.get()Returns
columnNames( string[] )- The name of the columns of the DataFrame.
Example
// get the header of a dataFrame
var columnNames = dataFrame.header.get();