Plots created using seaborn need to be displayed like ordinary matplotlib plots This can be done using the
plt.show()
function from matplotlib.
Originally I posted the solution to use the already imported matplotlib object from seaborn (sns.plt.show()
) however this is considered to be a bad practice. Therefore, simply…
Top comments (0)