Class RSquaredTest

    • Constructor Detail

      • RSquaredTest

        public RSquaredTest()
    • Method Detail

      • evaluate

        public void evaluate​(GeneralTask t)
        Calculates the coefficient of determination, or simply the R2 value.

        First, the mean temperature of the data is calculated. Then, the TSS (total sum of squares) is calculated as proportional to the variance of data. The residual sum of squares (RSS) is calculated by calling this.deviationSquares(curve). Finally, these values are combined together as: 1 - RSS/TSS.

        Specified by:
        evaluate in class Statistic
        Parameters:
        t - the task containing the reference data
        See Also:
        Wikipedia page
      • setSumOfSquares

        public void setSumOfSquares​(SumOfSquares sos)