Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

correlation matrix python

# option 1
corr_matrix = df.corr()
corr_matrix.style.background_gradient(cmap='coolwarm')

# option 2
plt.figure(figsize=(10,10))
cor = df.corr()
sns.heatmap(cor, annot=True, cmap=plt.cm.Blues)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #correlation #matrix #python
ADD COMMENT
Topic
Name
7+7 =