[]
A class that aggregates values and provides summary statistics (including count, sum, average, standard deviation, and variance).
public class Tally
| Name | Description |
|---|---|
| Tally() | Initializes a new instance of a Tally. |
| Tally(bool) | Initializes a new instance of a Tally. |
| Name | Description |
|---|---|
| Add(Expression) | Adds an Expression to the Tally, updating the associated summary statistics. |
| AddValue(object) | Adds a value to the Tally, updating the associated summary statistics. |
| Average() | Gets the average of the values in the Tally. |
| Count() | Gets the total count of values in the Tally. |
| Max() | Gets the maximum value in the Tally. |
| Min() | Gets the minimum value in the Tally. |
| Range() | Gets the range of values in the Tally (maximum minus minimum). |
| Std() | Gets the standard deviation of the values in the Tally. |
| StdP() | Gets the population standard deviation of the values in the Tally. |
| Sum() | Gets the sum of the values in the Tally. |
| Var() | Gets the variance of the values in the Tally. |
| VarP() | Gets the population variance of the values in the Tally. |