Package pulse.search.statistics
Class BICStatistic
-
- All Implemented Interfaces:
Serializable
,Descriptive
,Reflexive
public class BICStatistic extends ModelSelectionCriterion
Bayesian Information Criterion (BIC) algorithm formulated for the Gaussian distribution of residuals. This is used in model selection. BIC values are always negative. The absolute BIC value is meaningless, it is only used as a comparative statistic.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BICStatistic()
BICStatistic(ModelSelectionCriterion another)
BICStatistic(OptimiserStatistic os)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ModelSelectionCriterion
copy()
String
getDescriptor()
If not null, will return the prefix, otherwise calls the superclass method.double
penalisingTerm(int kq, int n)
The penalising term, which is different depending on implementation.-
Methods inherited from class pulse.search.statistics.ModelSelectionCriterion
calcCriterion, equals, evaluate, getNumVariables, getOptimiserStatistic, getStatistic, hashCode, probability, set, setOptimiserStatistic, setStatistic, weight
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getListeners, getPrefix, ignoreSiblings, initListeners, isListedNumericType, isListedParameter, listedKeywords, listedTypes, numericData, parameterListChanged, removeListeners, setPrefix, updateProperties, updateProperty
-
Methods inherited from class pulse.util.Accessible
accessibleChildren, genericProperties, genericProperty, numericProperties, numericProperty, property, update, update
-
Methods inherited from class pulse.util.UpwardsNavigable
addHierarchyListener, getHierarchyListeners, getParent, identify, removeHierarchyListener, removeHierarchyListeners, setParent, specificAncestor, tellParent
-
-
-
-
Constructor Detail
-
BICStatistic
public BICStatistic(ModelSelectionCriterion another)
-
BICStatistic
public BICStatistic(OptimiserStatistic os)
-
BICStatistic
public BICStatistic()
-
-
Method Detail
-
copy
public ModelSelectionCriterion copy()
- Specified by:
copy
in classModelSelectionCriterion
-
penalisingTerm
public double penalisingTerm(int kq, int n)
Description copied from class:ModelSelectionCriterion
The penalising term, which is different depending on implementation.- Specified by:
penalisingTerm
in classModelSelectionCriterion
- Parameters:
kq
- the number of model variablesn
- the sample size- Returns:
- the BIC penalising term
-
getDescriptor
public String getDescriptor()
Description copied from class:PropertyHolder
If not null, will return the prefix, otherwise calls the superclass method.- Overrides:
getDescriptor
in classPropertyHolder
- Returns:
- the descriptor
- See Also:
Group.getSimpleName()
-
-