import matplotlib.pyplot as plt #Scatter plot plt.scatter(x, y) #histogram plt.hist(y, bins=5) #bar graph plt.bar(x, y) #Line graph plt.plot(x, y) #Box plot plt.boxplot(y)
Recommended Posts