GeoBlazor Pro
dymaptic.GeoBlazor.Pro
dymaptic.GeoBlazor.Pro.Results
SummaryStatisticsResult Class
The statistics returned from the summaryStatistics() query. ArcGIS Maps SDK for JavaScript
public record 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; init; }
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; init; }
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; init; }
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; init; }
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; init; }
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; init; }
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; init; }
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; init; }
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; init; }