pub fn permutation_test_score<E, F, C>(
estimator: E,
x: &Array2<Float>,
y: &Array1<Float>,
cv: &C,
scoring: Option<Scoring>,
n_permutations: usize,
random_state: Option<u64>,
n_jobs: Option<usize>,
) -> Result<PermutationTestResult>Expand description
Evaluate the significance of a cross-validated score with permutations
This function tests whether the estimator performs significantly better than random by computing cross-validation scores on permuted labels.