dataFrame.cell — get()
Description
The get() method of the cell object returns the value stored in the selected cell.
Signature
dataFrame.cell(columnName, rowIndex).get()Argument
columnName(string)- The name of the column that contains the target cell.
rowIndex(number)- The index of the row that contains the target cell.
Returns
value(any)- The value stored in the target cell.
Example
// log a the value of the first cell in the 'revenue' column
var revenueValue = df.cell('revenu', 1).get();
notebook.log(revenueValue);