Include the Seaborn module in your code with the following statement:
import seaborn as sns |
import matplotlib.pyplot as plt import seaborn as sns sns.distplot([0, 1, 2, 3, 4, 5]) plt.show() |
import matplotlib.pyplot as plt import seaborn as sns sns.distplot([0, 1, 2, 3, 4, 5], hist=False) plt.show() |