用过滤法对以下数据进行特征选择:
[[0,2,0,3],
[0,1,4,3],
[0,1,1,3]]
from sklearn.feature_selection import VarianceThresholddata=[[0,2,0,3],[0,1,4,3],[0,1,1,3]]vt= VarianceThreshold(threshold=0.3)data1=vt.fit_transform(data)print(data1)