13 references to
Microsoft.Data.Analysis (2)
DataFrame.cs (1)
724
foreach (object obj in Rows
[
i])
GroupBy.cs (1)
503
return _keyToRowIndicesMap.Select(kvp => new Grouping(kvp.Key, kvp.Value.Select(index => _dataFrame.Rows
[
index])));
Microsoft.Data.Analysis.Interactive (2)
DataFrameKernelExtension.cs (2)
64
foreach (var obj in df.Rows
[
index])
117
foreach (var obj in df.Rows
[
index])
Microsoft.Data.Analysis.Tests (9)
DataFrame.IOTests.cs (1)
1316
Assert.Equal(_cells[i], df.Rows
[
i]);
DataFrameTests.cs (3)
1036
DataFrameRow row = ret.Rows
[
i];
1041
Assert.Equal(row[j], check1.Rows
[
i][j]);
1045
Assert.Equal(row[j]?.ToString(), (check2.Rows
[
i - check1.Rows.Count][j])?.ToString());
DataFrameTests.Merge.cs (3)
109
DataFrameRow dataFrameMergeRow = merge.Rows
[
mergeRow];
118
compare = left.Rows
[
leftRow.Value][columnIndex];
126
compare = right.Rows
[
rightRow.Value][rightColumnIndex];
DataFrameTests.Sort.cs (2)
112
DataFrameRow lastRow = sortedDataFrame.Rows
[
sortedDataFrame.Rows.Count - 1];
113
DataFrameRow penultimateRow = sortedDataFrame.Rows
[
sortedDataFrame.Rows.Count - 2];