Skip to content

Commit 7dbb119

Browse files
committed
chore: remove comment
1 parent cb8af79 commit 7dbb119

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stats/copulas/correlation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ fn spearman_correlation(data: &Array2<f64>) -> Array2<f64> {
6767

6868
let rho = numerator / (denominator_i * denominator_j);
6969
rho_matrix[[i, j]] = rho;
70-
rho_matrix[[j, i]] = rho; // Szimmetrikus mátrix
70+
rho_matrix[[j, i]] = rho;
7171
}
7272
}
7373

0 commit comments

Comments
 (0)