I rendered a heatmap with seaborn.heatmap() works nicely. However, for a certain purpose I need frames around the plot.
matplotlib.rcParams['axes.edgecolor'] = 'black'
matplotlib.rcParams['axes.linewidth'] = 1
both don't work.
I rendered a heatmap with seaborn.heatmap() works nicely. However, for a certain purpose I need frames around the plot.
matplotlib.rcParams['axes.edgecolor'] = 'black'
matplotlib.rcParams['axes.linewidth'] = 1
both don't work.
Don't know if there is a technical command for that but if you want to mimic the behavior just try using
axhline
andaxvline
:, which results in: