dataFrame.row — get()
Description
The get() method of the row object returns the values of the selected row.
Signature
dataFrame.row(rowIndex).get()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();