Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for populationStandardDeviation (0.39 seconds)

  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()
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 05:21:26 GMT 2026
    - 23.5K bytes
    - Click Count (0)
  2. 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()).isEqualTo(0.0);
        assertThat(TWO_VALUES_STATS.populationStandardDeviation())
            .isWithin(ALLOWED_ERROR)
            .of(sqrt(TWO_VALUES_SUM_OF_SQUARES_OF_DELTAS / 2));
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 33.4K bytes
    - Click Count (0)
  3. 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) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 14.1K bytes
    - Click Count (0)
  4. 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) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 14.1K bytes
    - Click Count (0)
  5. 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());
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 05:21:26 GMT 2026
    - 37.1K bytes
    - Click Count (0)
  6. guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

        assertThrows(IllegalStateException.class, () -> emptyAccumulator.populationStandardDeviation());
        assertThrows(
            IllegalStateException.class,
            () -> emptyAccumulatorByAddAllEmptyIterable.populationStandardDeviation());
        assertThrows(
            IllegalStateException.class,
            () -> emptyAccumulatorByAddAllEmptyStats.populationStandardDeviation());
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 05:21:26 GMT 2026
    - 37.1K bytes
    - Click Count (0)
Back to Top