Table of Contents

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

long

Max

Maximum value seen so far.

public double Max { get; set; }

Property Value

double

Mean

Average (mean) of all values seen so far.

public double Mean { get; set; }

Property Value

double

Min

Minumum value seen so far.

public double Min { get; set; }

Property Value

double

StdDev

A measure of the amount of variation of the values of a variable about its mean

public double StdDev { get; }

Property Value

double

Variance

The expected value of the squared deviation from the mean of a random variable

public double Variance { get; set; }

Property Value

double

Methods

ToString()

Prints a summary of the statistics to a string.

public override string ToString()

Returns

string