Class FitsDataStats
- Namespace
- FitsModel
- Assembly
- FitsModel.dll
Represents statistical data calculated from a sequence of numeric values.
public class FitsDataStats
- Inheritance
-
FitsDataStats
- Inherited Members
Constructors
FitsDataStats()
public FitsDataStats()
Properties
Count
Number of values seen so far.
public long Count { get; set; }
Property Value
Max
Maximum value seen so far.
public double Max { get; set; }
Property Value
Mean
Average (mean) of all values seen so far.
public double Mean { get; set; }
Property Value
Min
Minumum value seen so far.
public double Min { get; set; }
Property Value
StdDev
A measure of the amount of variation of the values of a variable about its mean
public double StdDev { get; }
Property Value
Variance
The expected value of the squared deviation from the mean of a random variable
public double Variance { get; set; }
Property Value
Methods
ToString()
Prints a summary of the statistics to a string.
public override string ToString()