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)
36
yield return column[
_rowIndex
];
42
return _dataFrame.Columns.Select(col => new KeyValuePair<string, object>(col.Name, col[
_rowIndex
]));
54
return _dataFrame.Columns[index][
_rowIndex
];
58
_dataFrame.Columns[index][
_rowIndex
] = value;
71
return _dataFrame[columnName][
_rowIndex
];
75
_dataFrame[columnName][
_rowIndex
] = value;