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)
84DataFrameColumn floatColumn = df.Columns["Float"].CumulativeMin(); 93df.Columns["Float"].CumulativeMin(true); 134Assert.Throws<NotSupportedException>(() => column.CumulativeMin()); 146Assert.Throws<NotImplementedException>(() => column.CumulativeMin()); 158column.CumulativeMin(); 170column.CumulativeMin(); 253DataFrameColumn floatColumn = df.Columns["Float"].CumulativeMin(); 262df.Columns["Float"].CumulativeMin(true); 303Assert.Throws<NotSupportedException>(() => column.CumulativeMin()); 315Assert.Throws<NotImplementedException>(() => column.CumulativeMin()); 333column.CumulativeMin();