when I display the distributtion plot it works just fine and I get my graph displayed.
sns.distplot(df['Price'])
when I add a new code line to display the heatmap of the corr:
sns.heatmap(df.corr())
it Crushes my old graph and get displayed at its place. can't get both graphs displayed at the same time.