Question 20
Which columns will not be included in the selected data within the code below?
import numpy as npfrom sklearn.feature_selection import VarianceThreshold
data = np.array([[ 95, 0.332, 112, 1, 0.56 ], [ 146, 0.332, 177, 1, 9.2 ], [ -96, 0.332, -139, 1, -0.82 ], [ 116, 0.332, 117, 1, 4.8 ], [ -87, 0.332, -63, 1, -1.1 ]])
vf = VarianceThreshold(threshold=0)
selected_data = vf.fit_transform(data)selected_dataColumn indexed at 0
Column indexed at 1
Column indexed at 2
Column indexed at 3
Column indexed at 4
No columns