Class ModelSelectionCriterion

    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • calcCriterion

        public void calcCriterion()
        This calculates either the AIC or BIC statistic, which only differ by the penalising term.
        See Also:
        penalisingTerm()
      • penalisingTerm

        public abstract double penalisingTerm​(int k,
                                              int n)
        The penalising term, which is different depending on implementation.
        Parameters:
        k - the number of model variables
        n - the sample size
        Returns:
        the penalising term
      • weight

        public NumericProperty 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.
        Parameters:
        the - selection statistics of the same type as this one
        Returns:
        a NumericProperty of the MODEL_WEIGHT type, which is the probability this model is the best one.
      • probability

        public double probability​(List<ModelSelectionCriterion> all)
        Calculates the probability that this model is the best among all others.
        Parameters:
        all - statistics from models that will be compared with this one
        Returns:
        the probability, which is a decimal value within the [0,1] range.
      • getNumVariables

        public int getNumVariables()
      • setOptimiserStatistic

        public final void setOptimiserStatistic​(OptimiserStatistic os)
      • set

        public void set​(NumericPropertyKeyword key,
                        NumericProperty p)
        Description copied from class: Accessible

        An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer) NumericProperties in subclasses of Accessible. Typically this involves a switch statement that goes through the different options for the type and invokes different set(...) methods to update the matching NumericProperty with property.

        Specified by:
        set in class Accessible
        Parameters:
        key - the type, which must be equal by definition to property.getType().
        p - the property, which contains new information.