标签:import 代码 tle select print bar turn ima res
用过滤法对以下数据进行特征选择:
[[0,2,0,3],
[0,1,4,3],
[0,1,1,3]]
要求:
1、Variance Threshold(threshold =1.0)
2、将结果截图
1 from sklearn.feature_selection import VarianceThreshold 2 def var(): 3 var =VarianceThreshold(threshold=1.0) 4 data=var.fit_transform([[0,2,0,3],[0,1,4,3],[0,1,1,3]]) 5 print(data) 6 return None 7 8 if __name__ =="__main__": 9 var()
结果:
标签:import 代码 tle select print bar turn ima res
原文地址:https://www.cnblogs.com/veccchan/p/13055497.html