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)
485var nullRow = df.Rows[3]; 549var nullRow = df.Rows[3]; 601var nullRow = df.Rows[3]; 640var nullRow = df.Rows[3]; 865var nullRow = df.Rows[3]; 927var nullRow = df.Rows[3]; 1159var nullRow = df.Rows[3];
DataFrameTests.cs (6)
38var row = dataFrame.Rows[4]; 966DataFrameRow firstRow = rows[0]; 970foreach (DataFrameRow row in rows) 982DataFrameRow nullRow = rows[5]; 997foreach (DataFrameRow row in rows) 1038DataFrameRow 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)