layout: default title: StatisticParameters parent: Core Classes —
dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Objects
StatisticParameters Class
The parameters for percentile statistics. This property must be set when the statisticType is set to either
percentile-continuous or percentile-discrete.
public class StatisticParameters :
System.IEquatable<dymaptic.GeoBlazor.Core.Objects.StatisticParameters>
Inheritance System.Object 🡒 StatisticParameters
Implements System.IEquatable<StatisticParameters>
Constructors
StatisticParameters(double) Constructor
The parameters for percentile statistics. This property must be set when the statisticType is set to either
percentile-continuous or percentile-discrete.
public StatisticParameters(double Value);
Parameters
Value
System.Double
Percentile value. This should be a decimal value between 0 and 1.
Properties
StatisticParameters.OrderBy Property
Specify ASC (ascending) or DESC (descending) to control the order of the data. For example, in a data set of 10
values from 1 to 10, the percentile value for 0.9 with orderBy set to ascending (ASC) is 9, but when orderBy is set
to descending (DESC) the result is 2. The default is ASC.
public System.Nullable<dymaptic.GeoBlazor.Core.Objects.OrderBy> OrderBy { get; set; }
Property Value
StatisticParameters.Value Property
Percentile value. This should be a decimal value between 0 and 1.
public double Value { get; set; }