mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2026-09-21 20:51:27 +08:00
* refactor: clean to roadmap content * refactor: move shared helpers into scripts/lib
652 B
652 B
Correlation Matrix
A correlation matrix shows the pairwise correlation coefficients between all numeric columns in a dataset. It is computed with df.corr() and typically visualized as a heatmap using Seaborn. It is a key EDA tool for identifying which features are strongly related, which helps with feature selection and multicollinearity detection.
Visit the following resources to learn more: