2 instantiations of DataFrameRow
Microsoft.Data.Analysis (2)
DataFrameRowCollection.cs (2)
34return new DataFrameRow(_dataFrame, index); 45yield return new DataFrameRow(_dataFrame, i);
32 references to DataFrameRow
Microsoft.Data.Analysis (15)
DataFrame.cs (3)
505/// <remarks>If a <seealso cref="DataFrameRow"/> in <paramref name="rows"/> is null, a null value is appended to each column</remarks> 510public DataFrame Append(IEnumerable<DataFrameRow> rows, bool inPlace = false, CultureInfo cultureInfo = null) 513foreach (DataFrameRow row in rows)
DataFrame.IO.cs (2)
165foreach (var row in Rows) 682foreach (var row in dataFrame.Rows)
DataFrameRowCollection.cs (5)
14public class DataFrameRowCollection : IEnumerable<DataFrameRow> 27/// An indexer to return the <see cref="DataFrameRow"/> at <paramref name="index"/> 30public DataFrameRow this[long index] 39/// Returns an enumerator of <see cref="DataFrameRow"/> objects 41public IEnumerator<DataFrameRow> GetEnumerator()
GroupBy.cs (5)
78private class Grouping : IGrouping<TKey, DataFrameRow> 81private readonly IEnumerable<DataFrameRow> _rows; 83public Grouping(TKey key, IEnumerable<DataFrameRow> rows) 91public IEnumerator<DataFrameRow> GetEnumerator() 499public IEnumerable<IGrouping<TKey, DataFrameRow>> Groupings
Microsoft.Data.Analysis.Tests (16)
DataFrame.IOTests.cs (7)
479var nullRow = df.Rows[3]; 543var nullRow = df.Rows[3]; 595var nullRow = df.Rows[3]; 634var nullRow = df.Rows[3]; 859var nullRow = df.Rows[3]; 921var nullRow = df.Rows[3]; 1153var nullRow = df.Rows[3];
DataFrameTests.cs (6)
36var row = dataFrame.Rows[4]; 964DataFrameRow firstRow = rows[0]; 968foreach (DataFrameRow row in rows) 980DataFrameRow nullRow = rows[5]; 995foreach (DataFrameRow row in rows) 1036DataFrameRow row = ret.Rows[i];
DataFrameTests.Merge.cs (1)
109DataFrameRow dataFrameMergeRow = merge.Rows[mergeRow];
DataFrameTests.Sort.cs (2)
112DataFrameRow lastRow = sortedDataFrame.Rows[sortedDataFrame.Rows.Count - 1]; 113DataFrameRow penultimateRow = sortedDataFrame.Rows[sortedDataFrame.Rows.Count - 2];
Microsoft.ML.Fairlearn (1)
Reductions\UtilityParity.cs (1)
154foreach (DataFrameRow row in Tags.Rows)