dataFrame.row — remove()
Description
The remove() method of the row object removes the selected row from the DataFrame.
Signature
dataFrame.row(rowIndex).remove()Argument
rowIndex(number)- The index of the row to remove.
Example
// remove the entire row 1 of the the dataFrame
dataFrame.row(1).remove();