Skip to content

Commit d2d00d5

Browse files
committed
Merge pull request scikit-learn#5591 from antialias/master
s/labe/label
2 parents e30af3c + 16798e3 commit d2d00d5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

sklearn/feature_selection/univariate_selection.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def chi2(X, y):
203203
204204
See also
205205
--------
206-
f_classif: ANOVA F-value between labe/feature for classification tasks.
206+
f_classif: ANOVA F-value between label/feature for classification tasks.
207207
f_regression: F-value between label/feature for regression tasks.
208208
"""
209209

@@ -262,7 +262,7 @@ def f_regression(X, y, center=True):
262262
263263
See also
264264
--------
265-
f_classif: ANOVA F-value between labe/feature for classification tasks.
265+
f_classif: ANOVA F-value between label/feature for classification tasks.
266266
chi2: Chi-squared stats of non-negative features for classification tasks.
267267
"""
268268
if issparse(X) and center:
@@ -369,7 +369,7 @@ class SelectPercentile(_BaseFilter):
369369
370370
See also
371371
--------
372-
f_classif: ANOVA F-value between labe/feature for classification tasks.
372+
f_classif: ANOVA F-value between label/feature for classification tasks.
373373
chi2: Chi-squared stats of non-negative features for classification tasks.
374374
f_regression: F-value between label/feature for regression tasks.
375375
SelectKBest: Select features based on the k highest scores.
@@ -439,7 +439,7 @@ class SelectKBest(_BaseFilter):
439439
440440
See also
441441
--------
442-
f_classif: ANOVA F-value between labe/feature for classification tasks.
442+
f_classif: ANOVA F-value between label/feature for classification tasks.
443443
chi2: Chi-squared stats of non-negative features for classification tasks.
444444
f_regression: F-value between label/feature for regression tasks.
445445
SelectPercentile: Select features based on percentile of the highest scores.
@@ -503,7 +503,7 @@ class SelectFpr(_BaseFilter):
503503
504504
See also
505505
--------
506-
f_classif: ANOVA F-value between labe/feature for classification tasks.
506+
f_classif: ANOVA F-value between label/feature for classification tasks.
507507
chi2: Chi-squared stats of non-negative features for classification tasks.
508508
f_regression: F-value between label/feature for regression tasks.
509509
SelectPercentile: Select features based on percentile of the highest scores.
@@ -555,7 +555,7 @@ class SelectFdr(_BaseFilter):
555555
556556
See also
557557
--------
558-
f_classif: ANOVA F-value between labe/feature for classification tasks.
558+
f_classif: ANOVA F-value between label/feature for classification tasks.
559559
chi2: Chi-squared stats of non-negative features for classification tasks.
560560
f_regression: F-value between label/feature for regression tasks.
561561
SelectPercentile: Select features based on percentile of the highest scores.
@@ -605,7 +605,7 @@ class SelectFwe(_BaseFilter):
605605
606606
See also
607607
--------
608-
f_classif: ANOVA F-value between labe/feature for classification tasks.
608+
f_classif: ANOVA F-value between label/feature for classification tasks.
609609
chi2: Chi-squared stats of non-negative features for classification tasks.
610610
f_regression: F-value between label/feature for regression tasks.
611611
SelectPercentile: Select features based on percentile of the highest scores.
@@ -658,7 +658,7 @@ class GenericUnivariateSelect(_BaseFilter):
658658
659659
See also
660660
--------
661-
f_classif: ANOVA F-value between labe/feature for classification tasks.
661+
f_classif: ANOVA F-value between label/feature for classification tasks.
662662
chi2: Chi-squared stats of non-negative features for classification tasks.
663663
f_regression: F-value between label/feature for regression tasks.
664664
SelectPercentile: Select features based on percentile of the highest scores.

0 commit comments

Comments
 (0)