GeoBlazor Pro
layout: pro title: SummaryStatisticsResult parent: Pro Classes grand_parent: GeoBlazor Pro —
dymaptic.GeoBlazor.Pro
dymaptic.GeoBlazor.Pro.Model
SummaryStatisticsResult Class
The statistics returned from the summaryStatistics() query.
ArcGIS Maps SDK for JavaScript
public class SummaryStatisticsResult :
System.IEquatable<dymaptic.GeoBlazor.Pro.Model.SummaryStatisticsResult>
Inheritance System.Object 🡒 SummaryStatisticsResult
Implements System.IEquatable<SummaryStatisticsResult>
Constructors
SummaryStatisticsResult(double, int, double, double, double, double, double, double, Nullable) Constructor
The statistics returned from the summaryStatistics() query.
ArcGIS Maps SDK for JavaScript
public SummaryStatisticsResult(double Avg, int Count, double Max, double Median, double Min, double Stddev, double Sum, double Variance, System.Nullable<int> Nullcount);
Parameters
Avg
System.Double
The average of all values returned from the field or expression.
Count
System.Int32
The total number of features with a non-null value for the given field.
Max
System.Double
The maximum of all values returned from the field or expression.
Median
System.Double
The median of all values returned from the field or expression.
Min
System.Double
The minimum of all values returned from the field or expression.
Stddev
System.Double
The standard deviation calculated from values returned from the field or expression.
Sum
System.Double
The sum of all values returned from the field or expression.
Variance
System.Double
The calculated variance from all values returned from the field or expression.
Nullcount
System.Nullable<System.Int32>
The number of null values stored in the given field. Only applies to summary statistics calculated with a field value.
Properties
SummaryStatisticsResult.Avg Property
The average of all values returned from the field or expression.
public double Avg { get; set; }
Property Value
SummaryStatisticsResult.Count Property
The total number of features with a non-null value for the given field.
public int Count { get; set; }
Property Value
SummaryStatisticsResult.Max Property
The maximum of all values returned from the field or expression.
public double Max { get; set; }
Property Value
SummaryStatisticsResult.Median Property
The median of all values returned from the field or expression.
public double Median { get; set; }
Property Value
SummaryStatisticsResult.Min Property
The minimum of all values returned from the field or expression.
public double Min { get; set; }
Property Value
SummaryStatisticsResult.Nullcount Property
The number of null values stored in the given field. Only applies to summary statistics calculated with a field value.
public System.Nullable<int> Nullcount { get; set; }
Property Value
SummaryStatisticsResult.Stddev Property
The standard deviation calculated from values returned from the field or expression.
public double Stddev { get; set; }
Property Value
SummaryStatisticsResult.Sum Property
The sum of all values returned from the field or expression.
public double Sum { get; set; }
Property Value
SummaryStatisticsResult.Variance Property
The calculated variance from all values returned from the field or expression.
public double Variance { get; set; }