Class AggregateOperator
Represents an aggregate operator that can be applied over a query field.
Namespace: TileDB.CSharp
Assembly: TileDB.CSharp.dll
Syntax
public abstract class AggregateOperator
Remarks
This class abstracts the tiledb_channel_operator_t
type of the TileDB C API.
Properties
| Edit this page View SourceMax
Computes the maximum value in the field.
Declaration
public static AggregateOperator Max { get; }
Property Value
Type | Description |
---|---|
AggregateOperator |
Mean
Computes the mean of all values in the field.
Declaration
public static AggregateOperator Mean { get; }
Property Value
Type | Description |
---|---|
AggregateOperator |
Min
Computes the minimum value in the field.
Declaration
public static AggregateOperator Min { get; }
Property Value
Type | Description |
---|---|
AggregateOperator |
NullCount
Counts the number of null values in the field.
Declaration
public static AggregateOperator NullCount { get; }
Property Value
Type | Description |
---|---|
AggregateOperator |
Sum
Computes the sum of all values in the field.
Declaration
public static AggregateOperator Sum { get; }
Property Value
Type | Description |
---|---|
AggregateOperator |