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)
102DataFrameColumn uintColumn = df.Columns["Uint"].CumulativeProduct(); 105df.Columns["Uint"].CumulativeProduct(true); 135Assert.Throws<NotSupportedException>(() => column.CumulativeProduct()); 147Assert.Throws<NotImplementedException>(() => column.CumulativeProduct()); 162Assert.Throws<NotSupportedException>(() => column.CumulativeProduct()); 171column.CumulativeProduct(); 271DataFrameColumn uintColumn = df.Columns["Uint"].CumulativeProduct(); 274df.Columns["Uint"].CumulativeProduct(true); 304Assert.Throws<NotSupportedException>(() => column.CumulativeProduct()); 316Assert.Throws<NotImplementedException>(() => column.CumulativeProduct()); 326Assert.Throws<NotSupportedException>(() => column.CumulativeProduct()); 334column.CumulativeProduct();