Can we remove features that have zero-correlation with the target/label?
So I draw a pairplot/heatmap from the feature correlations of a dataset and see a set of features that bears Zero-correlations both with:
- every other feature and
- also with the target/label
.Reference code snippet in python is below:
corr = df.corr()
sns.heatmap(corr) # Visually see how each feature is correlate with other (incl. the target)
- Can I drop these features to improve the accuracy of my classification problem?
- Can I drop these features to improve the accuracy of my classification problem, if it is explicitly given that these features are derived features?
Topic seaborn scikit-learn classification pandas
Category Data Science