Share via


PrimitiveDataFrameColumn<T>.Product Method

Definition

Overloads

Product()

Returns the product of the values in the column

Product(IEnumerable<Int64>)

Returns the product of the values at the rowIndices

Product()

Source:
PrimitiveDataFrameColumn.Computations.cs
Source:
PrimitiveDataFrameColumn.Computations.cs
Source:
PrimitiveDataFrameColumn.Computations.cs

Returns the product of the values in the column

public override object Product();
override this.Product : unit -> obj
Public Overrides Function Product () As Object

Returns

Applies to

Product(IEnumerable<Int64>)

Source:
PrimitiveDataFrameColumn.Computations.cs
Source:
PrimitiveDataFrameColumn.Computations.cs
Source:
PrimitiveDataFrameColumn.Computations.cs

Returns the product of the values at the rowIndices

public override object Product(System.Collections.Generic.IEnumerable<long> rowIndices);
override this.Product : seq<int64> -> obj
Public Overrides Function Product (rowIndices As IEnumerable(Of Long)) As Object

Parameters

rowIndices
IEnumerable<Int64>

Returns

Applies to