- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for pearsonsCorrelationCoefficient (0.15 seconds)
-
android/guava-tests/test/com/google/common/math/PairedStatsTest.java
assertThrows(IllegalStateException.class, EMPTY_PAIRED_STATS::pearsonsCorrelationCoefficient); assertThrows( IllegalStateException.class, ONE_VALUE_PAIRED_STATS::pearsonsCorrelationCoefficient); PairedStats infiniteXStats = createSingleStats(Double.POSITIVE_INFINITY, 1.23); assertThrows(IllegalStateException.class, infiniteXStats::pearsonsCorrelationCoefficient);
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) -
guava-tests/test/com/google/common/math/PairedStatsTest.java
assertThrows(IllegalStateException.class, EMPTY_PAIRED_STATS::pearsonsCorrelationCoefficient); assertThrows( IllegalStateException.class, ONE_VALUE_PAIRED_STATS::pearsonsCorrelationCoefficient); PairedStats infiniteXStats = createSingleStats(Double.POSITIVE_INFINITY, 1.23); assertThrows(IllegalStateException.class, infiniteXStats::pearsonsCorrelationCoefficient);
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) -
guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java
assertThrows( IllegalStateException.class, () -> emptyAccumulator.pearsonsCorrelationCoefficient()); assertThrows( IllegalStateException.class, () -> emptyAccumulatorByAddAllEmptyPairedStats.pearsonsCorrelationCoefficient()); assertThrows( IllegalStateException.class, () -> oneValueAccumulator.pearsonsCorrelationCoefficient()); assertThrows( IllegalStateException.class,
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) -
android/guava/src/com/google/common/math/PairedStatsAccumulator.java
* * @throws IllegalStateException if the dataset is empty or contains a single pair of values, or * either the {@code x} and {@code y} dataset has zero population variance */ public final double pearsonsCorrelationCoefficient() { checkState(count() > 1); if (isNaN(sumOfProductsOfDeltas)) { return NaN; } double xSumOfSquaresOfDeltas = xStats.sumOfSquaresOfDeltas();Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 08 18:35:13 GMT 2025 - 10.4K bytes - Click Count (0) -
android/guava/src/com/google/common/math/PairedStats.java
* * @throws IllegalStateException if the dataset is empty or contains a single pair of values, or * either the {@code x} and {@code y} dataset has zero population variance */ public double pearsonsCorrelationCoefficient() { checkState(count() > 1); if (isNaN(sumOfProductsOfDeltas)) { return NaN; } double xSumOfSquaresOfDeltas = xStats().sumOfSquaresOfDeltas();Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 12.6K bytes - Click Count (0)