Import the Seaborn module in your code using the following statement: import seaborn as sns Plotting a DisplotExampleGet your own Python Server import matplotlib.pyplot as pltimport seaborn as snssns.displot([0, 1, 2, 3, 4, 5]) plt.show() Try it Yourself » Plotting...