Uses of Class
pulse.search.statistics.ModelSelectionCriterion
-
Packages that use ModelSelectionCriterion Package Description pulse.search.statistics PULsE Statistical Kit.pulse.tasks Introduces theSearchTask
, which is the main actor inPULsE
, and theTaskManager
, a high-level class which among other functions manages loading and executingSearchTask
s. -
-
Uses of ModelSelectionCriterion in pulse.search.statistics
Subclasses of ModelSelectionCriterion in pulse.search.statistics Modifier and Type Class Description class
AICStatistic
AIC algorithm: Banks, H.class
BICStatistic
Bayesian Information Criterion (BIC) algorithm formulated for the Gaussian distribution of residuals.Methods in pulse.search.statistics that return ModelSelectionCriterion Modifier and Type Method Description ModelSelectionCriterion
AICStatistic. copy()
ModelSelectionCriterion
BICStatistic. copy()
abstract ModelSelectionCriterion
ModelSelectionCriterion. copy()
Method parameters in pulse.search.statistics with type arguments of type ModelSelectionCriterion Modifier and Type Method Description double
ModelSelectionCriterion. probability(List<ModelSelectionCriterion> all)
Calculates the probability that this model is the best amongall
others.NumericProperty
ModelSelectionCriterion. weight(List<ModelSelectionCriterion> all)
Calculates the weight (in the Akaike sense) when comparing the model associated with this statistic with other models represented by statistics of the same type.Constructors in pulse.search.statistics with parameters of type ModelSelectionCriterion Constructor Description AICStatistic(ModelSelectionCriterion another)
BICStatistic(ModelSelectionCriterion another)
ModelSelectionCriterion(ModelSelectionCriterion another)
-
Uses of ModelSelectionCriterion in pulse.tasks
Methods in pulse.tasks that return ModelSelectionCriterion Modifier and Type Method Description ModelSelectionCriterion
Calculation. getModelSelectionCriterion()
Methods in pulse.tasks that return types with arguments of type ModelSelectionCriterion Modifier and Type Method Description static InstanceDescriptor<? extends ModelSelectionCriterion>
Calculation. getModelSelectionDescriptor()
Methods in pulse.tasks with parameters of type ModelSelectionCriterion Modifier and Type Method Description void
Calculation. setModelSelectionCriterion(ModelSelectionCriterion rs)
-