1 override of CumulativeProduct
Microsoft.Data.Analysis (1)
PrimitiveDataFrameColumn.Computations.cs (1)
66public override DataFrameColumn CumulativeProduct(bool inPlace = false)
12 references to CumulativeProduct
Microsoft.Data.Analysis.Tests (12)
DataFrameTests.Computations.cs (12)
100DataFrameColumn uintColumn = df.Columns["Uint"].CumulativeProduct(); 103df.Columns["Uint"].CumulativeProduct(true); 133Assert.Throws<NotSupportedException>(() => column.CumulativeProduct()); 145Assert.Throws<NotImplementedException>(() => column.CumulativeProduct()); 160Assert.Throws<NotSupportedException>(() => column.CumulativeProduct()); 169column.CumulativeProduct(); 269DataFrameColumn uintColumn = df.Columns["Uint"].CumulativeProduct(); 272df.Columns["Uint"].CumulativeProduct(true); 302Assert.Throws<NotSupportedException>(() => column.CumulativeProduct()); 314Assert.Throws<NotImplementedException>(() => column.CumulativeProduct()); 324Assert.Throws<NotSupportedException>(() => column.CumulativeProduct()); 332column.CumulativeProduct();