dataFrame.rows — indexes()
Description
The indexes() method of the rows object returns the indexes of all rows in the DataFrame.
Signature
dataFrame.rows.indexes()Returns
indexes(array)- An array containing the index of each row in the DataFrame.
Example
// get the indexes of all rows in the DataFrame.
var indexes = dataFrame.rows.indexes();