使用随机逻辑回归模型进行特征筛选,使用get_support方法获取结果时出现以下错误:
IndexError: boolean index did not match indexed array along dimension 0; dimension is 9 but corresponding boolean dimension is 8
解决办法:
get_support(indices=False)indices默认是False,返回一个类型是boolean的数组;indices为True,返回一个整型数组,
所以解决办法就是把参数改变。默认的是False,改为get_support(indices=True)就好了。