标签: python machine-learning scikit-learn feature-selection
我在分类问题上使用scikit learn's SelectK。如何查看SelectK选择了哪些变量?
答案 0 :(得分:3)
根据official documentation,您应该使用:get_support()。
get_support()
使用get_support(indices=True)获取整数数组,而不是布尔掩码。
get_support(indices=True)