1 write to _rowIndex
Microsoft.Data.Analysis (1)
DataFrameRow.cs (1)
26_rowIndex = rowIndex;
6 references to _rowIndex
Microsoft.Data.Analysis (6)
DataFrameRow.cs (6)
36yield return column[_rowIndex]; 42return _dataFrame.Columns.Select(col => new KeyValuePair<string, object>(col.Name, col[_rowIndex])); 54return _dataFrame.Columns[index][_rowIndex]; 58_dataFrame.Columns[index][_rowIndex] = value; 71return _dataFrame[columnName][_rowIndex]; 75_dataFrame[columnName][_rowIndex] = value;