sounds like a simple enough task, but it is not working and I am not sure what I am doing wrong. I am trying to create a correlation heatmap. I use the code below:
sns.heatmap(df.corr(method='pearson', min_periods=1));
and simply nothing happens. when I then do the below:
hmap = sns.heatmap(df.corr(method='pearson', min_periods=1));
hmap
I get the output as:
<AxesSubplot:title={'center':'Triangle Correlation Heatmap'}>
can someone please help me understand this?