dataFrame.column — get()

Description

The get() method of the column object returns the values of the selected column.

Signature

dataFrame.column(columnName).get()
Scope
dataFrame
Family
column
Returns
array

Argument

columnName (string)
The name of the column from which to retrieve values.

Returns

mask (array)
An array containing the values of the selected column.

Example

// get the values of a 'revenue' column of the dataFrame
var mask = dataFrame.column('revenue').get();

// log the seleted column values
notebook.log(mask);