dataFrame.row — remove()

Description

The remove() method of the row object removes the selected row from the DataFrame.

Signature

dataFrame.row(rowIndex).remove()
Scope
dataFrame
Family
row
Returns
mutates

Argument

rowIndex (number)
The index of the row to remove.

Example

// remove the entire row 1 of the the dataFrame
dataFrame.row(1).remove();