pub fn spearman_rank_corr(a: Expr, b: Expr, propagate_nans: bool) -> Expr
Available on crate features
rank
and propagate_nans
only.Expand description
Compute the spearman rank correlation between two columns. Missing data will be excluded from the computation.
ยงArguments
- propagate_nans
If
true
anyNaN
encountered will lead toNaN
in the output. If tofalse
thenNaN
are regarded as larger than any finite number and thus lead to the highest rank.