I am working with the dataset of size (500, 33).
In particular the data set contains 9 features say
[X_High, X_medium, X_low, Y_High, Y_medium, Y_low, Z_High, Z_medium, Z_low]
Both visually & after correlation matrix calculation I observed that
[X_High, Y_High, Z_High] & [ X_medium, Y_medium, Z_medium ] & [X_low, Y_low, Z_low] are highly correlated (above 85%).
I would like to perform a Clustering algorithm (say K means or GMM or DBSCAN).
In that case,
Is it necessary to remove the correlated features for Unsupervised learning ? Whether removing correlation or modifying features creates any impact ?