After running a Variance Threshold from Scikit-Learn on a set of data, it removes a couple of features. I feel I\'m doing something simple yet stupid, but I\'d like to retain th
You can use Pandas for thresholding too
data_new = data.loc[:, data.std(axis=0) > 0.75]