seaborn.objects.Plot.show#
- Plot.show(**kwargs)#
Compile the plot and display it by hooking into pyplot.
Calling this method is not necessary to render a plot in notebook context, but it may be in other environments (e.g., in a terminal). After compiling the plot, it calls
matplotlib.pyplot.show()
(passing any keyword parameters).Unlike other
Plot
methods, there is no return value. This should be the last method you call when specifying a plot.