Class Statistics
Statistics Object
Inheritance
System.Object
Statistics
Namespace: Stac.Common
Assembly: DotNetStac.dll
Syntax
public class Statistics : object
Constructors
| Improve this Doc View SourceStatistics(Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>)
Initializes a new instance of the Statistics class.
Declaration
public Statistics(double? minimum, double? maximum, double? mean, double? stdev, double? validPercent)
Parameters
Type | Name | Description |
---|---|---|
System.Nullable<System.Double> | minimum | minimum value |
System.Nullable<System.Double> | maximum | maximum value |
System.Nullable<System.Double> | mean | mean value |
System.Nullable<System.Double> | stdev | standard deviation |
System.Nullable<System.Double> | validPercent | valid percentage |
Properties
| Improve this Doc View SourceMaximum
Gets or sets maximum value
Declaration
public double? Maximum { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> | Maximum value |
Mean
Gets or sets mean value
Declaration
public double? Mean { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> | Mean value |
Minimum
Gets or sets minimum value
Declaration
public double? Minimum { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> | Minimum value |
Properties
Gets or sets additional fields
Declaration
public IDictionary<string, object> Properties { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<System.String, System.Object> | Additional fields |
Stdev
Gets or sets standard Deviation
Declaration
public double? Stdev { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> | Standard Deviation |
ValidPercent
Gets or sets valid percentage
Declaration
public double? ValidPercent { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> | Valid percentage |