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)
38private readonly DataFrameRowCollection _rowCollection; 62/// Returns a <see cref="DataFrameRowCollection"/> that contains a view of the rows in this <see cref="DataFrame"/> 64public DataFrameRowCollection Rows => _rowCollection;
DataFrameRowCollection.cs (1)
19/// Initializes a <see cref="DataFrameRowCollection"/>.
Microsoft.Data.Analysis.Tests (2)
DataFrameTests.cs (2)
962DataFrameRowCollection rows = df.Rows; 993DataFrameRowCollection rows = df.Rows;