dataFrame.row — get()

Description

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

Signature

dataFrame.row(rowIndex).get()
Scope
dataFrame
Family
row
Returns
row

Argument

rowIndex (number)
The index of the row from which to get values.

Returns

values (array)
An array containing the values of the selected row.

Example

// get the values of the row 1
dataFrame.row(1).get();