1 override of CumulativeMin
Microsoft.Data.Analysis (1)
PrimitiveDataFrameColumn.Computations.cs (1)
52public override DataFrameColumn CumulativeMin(bool inPlace = false)
11 references to CumulativeMin
Microsoft.Data.Analysis.Tests (11)
DataFrameTests.Computations.cs (11)
82DataFrameColumn floatColumn = df.Columns["Float"].CumulativeMin(); 91df.Columns["Float"].CumulativeMin(true); 132Assert.Throws<NotSupportedException>(() => column.CumulativeMin()); 144Assert.Throws<NotImplementedException>(() => column.CumulativeMin()); 156column.CumulativeMin(); 168column.CumulativeMin(); 251DataFrameColumn floatColumn = df.Columns["Float"].CumulativeMin(); 260df.Columns["Float"].CumulativeMin(true); 301Assert.Throws<NotSupportedException>(() => column.CumulativeMin()); 313Assert.Throws<NotImplementedException>(() => column.CumulativeMin()); 331column.CumulativeMin();