|
4 | 4 | recursive feature elimination algorithm.
|
5 | 5 | """
|
6 | 6 |
|
7 |
| -from .univariate_selection import chi2 |
8 |
| -from .univariate_selection import f_classif |
9 |
| -from .univariate_selection import f_oneway |
10 |
| -from .univariate_selection import f_regression |
11 |
| -from .univariate_selection import SelectPercentile |
12 |
| -from .univariate_selection import SelectKBest |
13 |
| -from .univariate_selection import SelectFpr |
14 |
| -from .univariate_selection import SelectFdr |
15 |
| -from .univariate_selection import SelectFwe |
16 |
| -from .univariate_selection import GenericUnivariateSelect |
| 7 | +from ._univariate_selection import chi2 |
| 8 | +from ._univariate_selection import f_classif |
| 9 | +from ._univariate_selection import f_oneway |
| 10 | +from ._univariate_selection import f_regression |
| 11 | +from ._univariate_selection import SelectPercentile |
| 12 | +from ._univariate_selection import SelectKBest |
| 13 | +from ._univariate_selection import SelectFpr |
| 14 | +from ._univariate_selection import SelectFdr |
| 15 | +from ._univariate_selection import SelectFwe |
| 16 | +from ._univariate_selection import GenericUnivariateSelect |
17 | 17 |
|
18 |
| -from .variance_threshold import VarianceThreshold |
| 18 | +from ._variance_threshold import VarianceThreshold |
19 | 19 |
|
20 |
| -from .rfe import RFE |
21 |
| -from .rfe import RFECV |
| 20 | +from ._rfe import RFE |
| 21 | +from ._rfe import RFECV |
22 | 22 |
|
23 |
| -from .from_model import SelectFromModel |
| 23 | +from ._from_model import SelectFromModel |
24 | 24 |
|
25 |
| -from .mutual_info_ import mutual_info_regression, mutual_info_classif |
| 25 | +from ._mutual_info import mutual_info_regression, mutual_info_classif |
26 | 26 |
|
27 | 27 |
|
28 | 28 | __all__ = ['GenericUnivariateSelect',
|
|
0 commit comments