Class VariableInfo
Contains the generated Variable and any supplementary information.
Inheritance
System.Object
VariableInfo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: BayesServer.Data.Discovery
Assembly: BayesServer.Data.Discovery.dll
Syntax
public class VariableInfo
Properties
Counts
Gets counts such as missing and non-missing data for the variable.
Declaration
public VariableInfoCounts Counts { get; }
Property Value
| Type | Description |
|---|---|
| VariableInfoCounts |
IsConstant
Gets a value which when true indicates that the variable has a constant value. For discrete this indicates a single state, for continuous this indicates zero variance.
Declaration
public bool IsConstant { get; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
MissingProbability
Gets weighted and unweighted values between 0 and 1 indicating the percentage of data that is missing for this variable.
Declaration
public VariableInfoValue MissingProbability { get; }
Property Value
| Type | Description |
|---|---|
| VariableInfoValue |
Variable
Gets the generated Variable.
Declaration
public Variable Variable { get; }
Property Value
| Type | Description |
|---|---|
| Variable |