Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.59 KB

File metadata and controls

30 lines (23 loc) · 1.59 KB

AnalysisConfigRep

Properties

Name Type Description Notes
bayesianThreshold string The threshold for the Probability to Beat Baseline (PBBL) and Probability to Be Best (PBB) comparisons for the Bayesian results analysis approach. Value should be between 0-100 inclusive. [optional] [default to undefined]
significanceThreshold string The significance threshold for the frequentist results analysis approach. Value should be between 0.0-1.0 inclusive. [optional] [default to undefined]
testDirection string The test sided direction for the frequentist results analysis approach. [optional] [default to undefined]
multipleComparisonCorrectionMethod string The method for multiple comparison correction. [optional] [default to undefined]
multipleComparisonCorrectionScope string The scope for multiple comparison correction. [optional] [default to undefined]
sequentialTestingEnabled boolean Whether sequential testing is enabled for Frequentist analysis [optional] [default to undefined]

Example

import { AnalysisConfigRep } from 'launchdarkly-api-typescript';

const instance: AnalysisConfigRep = {
    bayesianThreshold,
    significanceThreshold,
    testDirection,
    multipleComparisonCorrectionMethod,
    multipleComparisonCorrectionScope,
    sequentialTestingEnabled,
};

[Back to Model list] [Back to API list] [Back to README]