ALTAAnalysisOptions Class
 
ALTA solver analysis options. See AnalysisSettings to use settings to fit a model.
Properties
- ModelType Sets or gets the ALTA model type.
- Distribution Sets or gets the ALTA distribution.
- Analysis Sets or gets the ALTA solver method.
- UngroupGroupedData Sets or gets whether to ungroup grouped data.
- SortBeforeCalculations Sets or gets whether to sort before calculation.
Formatted Usage Example
Declare the ALTADataSet. See New ALTADataSet for additional details.
Dim ALTADS as New ALTADataSet
Set the various Settings.
       ALTADS.AnalysisSettings.ModelType = ALTASolverModel.Arrhenius
       ALTADS.AnalysisSettings.Distribution = ALTASolverDistribution.Weibull
       ALTADS.AnalysisSettings.Analysis = ALTASolverMethod.MLE
       ALTADS.AnalysisSettings.UngroupGroupedData = False
       ALTADS.AnalysisSettings.SortBeforeCalculations = True
