We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5403ef commit ba56083Copy full SHA for ba56083
Cargo.toml
@@ -20,14 +20,14 @@ ndarray = "0.12.1"
20
noisy_float = "0.1.8"
21
num-integer = "0.1"
22
num-traits = "0.2"
23
-rand = "0.6"
+rand = "0.7"
24
itertools = { version = "0.8.0", default-features = false }
25
indexmap = "1.0"
26
27
[dev-dependencies]
28
criterion = "0.2"
29
quickcheck = { version = "0.8.1", default-features = false }
30
-ndarray-rand = "0.9"
+ndarray-rand = "0.10"
31
approx = "0.3"
32
quickcheck_macros = "0.8"
33
num-bigint = "0.2.2"
src/correlation.rs
@@ -340,5 +340,4 @@ mod pearson_correlation_tests {
340
assert_eq!(a.ndim(), 2);
341
assert!(a.pearson_correlation().all_close(&numpy_corrcoeff, 1e-7));
342
}
343
-
344
0 commit comments