GeoBlazor Pro
dymaptic.GeoBlazor.Pro
dymaptic.GeoBlazor.Pro.Results
SummaryStatisticsResult Class
The statistics returned from the summaryStatistics() query.
ArcGIS Maps SDK for JavaScript
public class SummaryStatisticsResult :
System.IEquatable<dymaptic.GeoBlazor.Pro.Results.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=null);
Parameters
Avg
System.Double
The average of all values returned from the field or expression.
ArcGIS Maps SDK for JavaScript
Count
System.Int32
The total number of features with a non-null value for the given field.
ArcGIS Maps SDK for JavaScript
Max
System.Double
The maximum of all values returned from the field or expression.
ArcGIS Maps SDK for JavaScript
Median
System.Double
The median of all values returned from the field or expression.
ArcGIS Maps SDK for JavaScript
Min
System.Double
The minimum of all values returned from the field or expression.
ArcGIS Maps SDK for JavaScript
Stddev
System.Double
The standard deviation calculated from values returned from the field or expression.
ArcGIS Maps SDK for JavaScript
Sum
System.Double
The sum of all values returned from the field or expression.
ArcGIS Maps SDK for JavaScript
Variance
System.Double
The calculated variance from all values returned from the field or expression.
ArcGIS Maps SDK for JavaScript
Nullcount
System.Nullable<System.Int32>
The number of null values stored in the given field.
ArcGIS Maps SDK for JavaScript
Properties
SummaryStatisticsResult.Avg Property
The average of all values returned from the field or expression.
ArcGIS Maps SDK for JavaScript
public double Avg { get; set; }
Property Value
SummaryStatisticsResult.Count Property
The total number of features with a non-null value for the given field.
ArcGIS Maps SDK for JavaScript
public int Count { get; set; }
Property Value
SummaryStatisticsResult.Max Property
The maximum of all values returned from the field or expression.
ArcGIS Maps SDK for JavaScript
public double Max { get; set; }
Property Value
SummaryStatisticsResult.Median Property
The median of all values returned from the field or expression.
ArcGIS Maps SDK for JavaScript
public double Median { get; set; }
Property Value
SummaryStatisticsResult.Min Property
The minimum of all values returned from the field or expression.
ArcGIS Maps SDK for JavaScript
public double Min { get; set; }
Property Value
SummaryStatisticsResult.Nullcount Property
The number of null values stored in the given field.
ArcGIS Maps SDK for JavaScript
public System.Nullable<int> Nullcount { get; set; }
Property Value
SummaryStatisticsResult.Stddev Property
The standard deviation calculated from values returned from the field or expression.
ArcGIS Maps SDK for JavaScript
public double Stddev { get; set; }
Property Value
SummaryStatisticsResult.Sum Property
The sum of all values returned from the field or expression.
ArcGIS Maps SDK for JavaScript
public double Sum { get; set; }
Property Value
SummaryStatisticsResult.Variance Property
The calculated variance from all values returned from the field or expression.
ArcGIS Maps SDK for JavaScript
public double Variance { get; set; }