柱状图是我们经常会见到的数据图表,每个柱状都表示一组数据
import seaborn
import matplotlib.pyplot as plt
months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']
sales = [100, 200, 150, 400, 300, 350]
plt.xlabel('Year')
plt.ylabel('Sales')
plt.title('Sales by Year (Heatmap)')
seaborn.barplot(x=months,y=sales) # 使用seaborn配置柱状图的X轴和Y轴
plt.show()
运行代码生成柱状图
散点图顾名思义,每个表里面的一个点就代表着一组数值
import seaborn
import matplotlib.pyplot as plt
months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']
sales = [100, 200, 150, 400, 300, 350]
plt.xlabel('Year')
plt.ylabel('Sales')
plt.title('Sales by Year (Heatmap)')
seaborn.scatterplot(x=months,y=sales) # 使用seaborn配置散点图的X轴和Y轴
plt.show()
全部0条评论
快来发表一下你的评论吧 !