dataFrame.row — clear()

Description

The clear() method of the row object clears all data values in the selected row.

Signature

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

Argument

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

Example

// remove the values of the row 1
dataFrame.row(1).clear();