Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for populationStandardDeviation (0.27 sec)

  1. guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

                    / (twoValuesAccumulator.xStats().populationStandardDeviation()
                        * twoValuesAccumulator.yStats().populationStandardDeviation()));
        assertThat(manyValuesAccumulator.pearsonsCorrelationCoefficient())
            .isWithin(ALLOWED_ERROR)
            .of(
                manyValuesAccumulator.populationCovariance()
                    / (manyValuesAccumulator.xStats().populationStandardDeviation()
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 23.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

                    / (twoValuesAccumulator.xStats().populationStandardDeviation()
                        * twoValuesAccumulator.yStats().populationStandardDeviation()));
        assertThat(manyValuesAccumulator.pearsonsCorrelationCoefficient())
            .isWithin(ALLOWED_ERROR)
            .of(
                manyValuesAccumulator.populationCovariance()
                    / (manyValuesAccumulator.xStats().populationStandardDeviation()
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 23.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

        assertThrows(IllegalStateException.class, () -> emptyAccumulator.populationStandardDeviation());
        assertThrows(
            IllegalStateException.class,
            () -> emptyAccumulatorByAddAllEmptyIterable.populationStandardDeviation());
        assertThrows(
            IllegalStateException.class,
            () -> emptyAccumulatorByAddAllEmptyStats.populationStandardDeviation());
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 36.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

        assertThrows(IllegalStateException.class, () -> emptyAccumulator.populationStandardDeviation());
        assertThrows(
            IllegalStateException.class,
            () -> emptyAccumulatorByAddAllEmptyIterable.populationStandardDeviation());
        assertThrows(
            IllegalStateException.class,
            () -> emptyAccumulatorByAddAllEmptyStats.populationStandardDeviation());
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 34K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/math/StatsTest.java

        assertThrows(
            IllegalStateException.class, () -> EMPTY_STATS_VARARGS.populationStandardDeviation());
        assertThrows(
            IllegalStateException.class, () -> EMPTY_STATS_ITERABLE.populationStandardDeviation());
        assertThat(ONE_VALUE_STATS.populationStandardDeviation()).isWithin(0.0).of(0.0);
        assertThat(TWO_VALUES_STATS.populationStandardDeviation())
            .isWithin(ALLOWED_ERROR)
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Nov 09 22:49:56 GMT 2023
    - 32.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/StatsTest.java

        assertThrows(
            IllegalStateException.class, () -> EMPTY_STATS_VARARGS.populationStandardDeviation());
        assertThrows(
            IllegalStateException.class, () -> EMPTY_STATS_ITERABLE.populationStandardDeviation());
        assertThat(ONE_VALUE_STATS.populationStandardDeviation()).isWithin(0.0).of(0.0);
        assertThat(TWO_VALUES_STATS.populationStandardDeviation())
            .isWithin(ALLOWED_ERROR)
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 28.4K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/math/PairedStatsTest.java

            .isWithin(ALLOWED_ERROR)
            .of(
                TWO_VALUES_PAIRED_STATS.populationCovariance()
                    / (TWO_VALUES_PAIRED_STATS.xStats().populationStandardDeviation()
                        * TWO_VALUES_PAIRED_STATS.yStats().populationStandardDeviation()));
        // For datasets of many double values, we test many combinations of finite and non-finite
        // y-values:
        for (ManyValues values : ALL_MANY_VALUES) {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 14K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/math/PairedStatsTest.java

            .isWithin(ALLOWED_ERROR)
            .of(
                TWO_VALUES_PAIRED_STATS.populationCovariance()
                    / (TWO_VALUES_PAIRED_STATS.xStats().populationStandardDeviation()
                        * TWO_VALUES_PAIRED_STATS.yStats().populationStandardDeviation()));
        // For datasets of many double values, we test many combinations of finite and non-finite
        // y-values:
        for (ManyValues values : ALL_MANY_VALUES) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 14K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/math/Stats.java

      @Override
      public String toString() {
        if (count() > 0) {
          return MoreObjects.toStringHelper(this)
              .add("count", count)
              .add("mean", mean)
              .add("populationStandardDeviation", populationStandardDeviation())
              .add("min", min)
              .add("max", max)
              .toString();
        } else {
          return MoreObjects.toStringHelper(this).add("count", count).toString();
        }
      }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 22K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/StatsAccumulator.java

       * Double#NEGATIVE_INFINITY}, or {@link Double#NaN}) then the result is {@link Double#NaN}.
       *
       * @throws IllegalStateException if the dataset is empty
       */
      public final double populationStandardDeviation() {
        return Math.sqrt(populationVariance());
      }
    
      /**
       * Returns the <a href="http://en.wikipedia.org/wiki/Variance#Sample_variance">unbiased sample
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 14.2K bytes
    - Viewed (0)
Back to top