Show / Hide Table of Contents

    Class ImpactOutputItem

    The output from an impact analysis, for a particular subset of evidence.

    Inheritance
    System.Object
    ImpactOutputItem
    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.Analysis
    Assembly: BayesServer.Analysis.dll
    Syntax
    public sealed class ImpactOutputItem

    Properties

    EvidenceFlags

    Gets a list of values each of which indicate which of the evidence being analyzed is set.

    Declaration
    public IList<bool> EvidenceFlags { get; }
    Property Value
    Type Description
    System.Collections.Generic.IList<System.Boolean>

    KLDivergenceFromNone

    Gets the Kullback-Leibler divergence D(P||Q) from the hypothesis query without evidence to analyze set (Q) to the current combination (P).

    Declaration
    public double? KLDivergenceFromNone { get; }
    Property Value
    Type Description
    System.Nullable<System.Double>

    KLDivergenceToAll

    Gets the Kullback-Leibler divergence D(P||Q) from the hypothesis query with the current subset of evidence (Q) to all evidence to analyze set (P).

    Declaration
    public double? KLDivergenceToAll { get; }
    Property Value
    Type Description
    System.Nullable<System.Double>

    StateAllDiffThis

    Gets the probability of the hypothesis state (if specified) with all evidence to analyze minus the state probability for this evidence configuration.

    Declaration
    public double? StateAllDiffThis { get; }
    Property Value
    Type Description
    System.Nullable<System.Double>

    StateAllLiftThis

    Gets the probability of the hypothesis state (if specified) when all evidence to analyze is set relative to when this evidence configuration is set.

    Declaration
    public double? StateAllLiftThis { get; }
    Property Value
    Type Description
    System.Nullable<System.Double>

    StateProbability

    Gets the probability of the hypothesis state (if specified) for this output item evidence.

    Declaration
    public double? StateProbability { get; }
    Property Value
    Type Description
    System.Nullable<System.Double>

    StateThisDiffNone

    Gets the probability of the hypothesis state (if specified) for this evidence configuration minus the state probability with no evidence to analyze.

    Declaration
    public double? StateThisDiffNone { get; }
    Property Value
    Type Description
    System.Nullable<System.Double>

    StateThisLiftNone

    Gets the probability of the hypothesis state (if specified) for this evidence configuration relative to when no evidence to analyze is set. Also known as the normalized likelihood.

    Declaration
    public double? StateThisLiftNone { get; }
    Property Value
    Type Description
    System.Nullable<System.Double>
    Back to top Copyright Bayes Server Ltd. All rights Reserved.