2 instantiations of DataFrameRowCollection
Microsoft.Data.Analysis (2)
DataFrame.cs (2)
47
_rowCollection = new
DataFrameRowCollection
(this);
53
_rowCollection = new
DataFrameRowCollection
(this);
6 references to DataFrameRowCollection
Microsoft.Data.Analysis (4)
DataFrame.cs (3)
38
private readonly
DataFrameRowCollection
_rowCollection;
62
/// Returns a <see cref="
DataFrameRowCollection
"/> that contains a view of the rows in this <see cref="DataFrame"/>
64
public
DataFrameRowCollection
Rows => _rowCollection;
DataFrameRowCollection.cs (1)
19
/// Initializes a <see cref="
DataFrameRowCollection
"/>.
Microsoft.Data.Analysis.Tests (2)
DataFrameTests.cs (2)
962
DataFrameRowCollection
rows = df.Rows;
993
DataFrameRowCollection
rows = df.Rows;