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 cb8af79 commit 7dbb119Copy full SHA for 7dbb119
src/stats/copulas/correlation.rs
@@ -67,7 +67,7 @@ fn spearman_correlation(data: &Array2<f64>) -> Array2<f64> {
67
68
let rho = numerator / (denominator_i * denominator_j);
69
rho_matrix[[i, j]] = rho;
70
- rho_matrix[[j, i]] = rho; // Szimmetrikus mátrix
+ rho_matrix[[j, i]] = rho;
71
}
72
73
0 commit comments