Show / Hide Table of Contents

Class CategoryStatistics

Represents a collection of statistics for a specific value of a variable.

Inheritance
object
CategoryStatistics
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: Algenta.Colectica.Model.Ddi
Assembly: Algenta.Colectica.Model.Ddi.dll
Syntax
public class CategoryStatistics

Constructors

CategoryStatistics()

Initializes a new instance of the CategoryStatistics class.

Declaration
public CategoryStatistics()

Properties

CategoryValue

Gets or sets the value of the variable being described by this object.

Declaration
public string CategoryValue { get; set; }
Property Value
Type Description
string

FilterValue

Gets or sets the value by which data are being filtered. The statistics in this object are for rows where FilterVariable == FilterValue.

Declaration
public string FilterValue { get; set; }
Property Value
Type Description
string

FilterVariable

Gets or describes the variable that was used to filter the values being summarized by this object.

Declaration
public Variable FilterVariable { get; set; }
Property Value
Type Description
Variable

Frequency

Gets or sets the frequency of this category in the data.

Declaration
public double Frequency { get; set; }
Property Value
Type Description
double

IsFiltered

Gets a value indicating whether the data being summarized by this object have been filtered.

Declaration
public bool IsFiltered { get; }
Property Value
Type Description
bool

Statistics

Gets or sets the statistics about this value of the variable.

Declaration
public ObservableCollection<CategoryStatistic> Statistics { get; set; }
Property Value
Type Description
ObservableCollection<CategoryStatistic>

WeightedFrequency

Gets or sets the frequency of this category in the data.

Declaration
public double WeightedFrequency { get; set; }
Property Value
Type Description
double
In this article
Back to top Generated by DocFX