如何查看从SelectK中选择的变量

时间:2015-07-10 04:25:40

标签: python machine-learning scikit-learn feature-selection

我在分类问题上使用scikit learn's SelectK。如何查看SelectK选择了哪些变量?

1 个答案:

答案 0 :(得分:3)

根据official documentation,您应该使用:get_support()

使用get_support(indices=True)获取整数数组,而不是布尔掩码。