Technical Elements Documentation
    Preparing search index...

    Interface ProbabilityModel

    Interface representing a probability model with its parameters and estimation details

    interface ProbabilityModel {
        distribution: DistributionType;
        estimationDetails?: {
            confidence: number;
            dataPointReferences: string[];
            estimationDate: string;
            estimationMethod: string;
        };
        parameters: Record<string, number>;
        source?: "estimated" | "manual" | "default";
    }
    Index

    Properties

    distribution: DistributionType

    Type of probability distribution

    estimationDetails?: {
        confidence: number;
        dataPointReferences: string[];
        estimationDate: string;
        estimationMethod: string;
    }

    Details about how the probability model was estimated

    Type declaration

    • confidence: number

      Confidence level in the estimation (0-1)

    • dataPointReferences: string[]

      References to data points used in estimation

    • estimationDate: string

      Date when estimation was performed

    • estimationMethod: string

      Method used for estimation

    parameters: Record<string, number>

    Parameters of the probability distribution

    source?: "estimated" | "manual" | "default"

    Source of the probability model