matplotlib.rcParams['font.family']='SimHei' plt.figure(figsize=(20,15)) ax1=plt.subplot(211) Platform = data.groupby(by='Platform').sum() Platform =Platform.iloc[::,-1:].sort_values(by='Global_Sales',ascending=False) sns.barplot(x=Platform.index,y=Platform.Global_Sales,ax=ax1) plt.title("游戏平台累计发行量",size = 14) ax2=plt.subplot(212) Platform_near5 = data[data.Year>=2011].groupby(by='Platform').sum() Platform_near5 =Platform_near5.iloc[::,-1:].sort_values(by='Global_Sales',ascending=False) sns.barplot(x=Platform_near5.index,y=Platform_near5.Global_Sales,ax=ax2) plt.title("近五年游戏平台累计发行量",size = 14) plt.show()
时间: 2024-02-05 18:04:44 浏览: 234
matplotilb中fig,ax = plt.subplots()的使用
这段代码使用了 `matplotlib` 和 `seaborn` 库来创建一个包含两个子图的图表,用于可视化游戏平台的累计发行量。
首先,通过 `matplotlib.rcParams['font.family']='SimHei'` 设置了字体为中文。
然后,使用 `plt.figure(figsize=(20,15))` 创建一个大小为 20x15 的图表。
接下来,使用 `plt.subplot(211)` 创建第一个子图,并将其赋值给变量 `ax1`。
通过 `data.groupby(by='Platform').sum()` 对数据集按照平台进行分组,并计算每个平台的累计发行量。然后使用 `.iloc[::,-1:]` 取出最后一列(即全球销售额),再按照全球销售额降序排序。结果存储在变量 `Platform` 中。
然后,使用 `sns.barplot()` 绘制条形图。通过 `x=Platform.index` 和 `y=Platform.Global_Sales` 将平台作为 x 轴的标签,全球销售额作为 y 轴的值。
使用 `plt.title()` 设置第一个子图的标题为 "游戏平台累计发行量",设置字体大小为 14。
接下来,使用 `plt.subplot(212)` 创建第二个子图,并将其赋值给变量 `ax2`。
通过 `data[data.Year>=2011].groupby(by='Platform').sum()` 筛选出近五年(2011 年及以后)的数据,并按照平台进行分组,并计算每个平台的累计发行量。然后使用 `.iloc[::,-1:]` 取出最后一列(即全球销售额),再按照全球销售额降序排序。结果存储在变量 `Platform_near5` 中。
然后,使用 `sns.barplot()` 绘制条形图。通过 `x=Platform_near5.index` 和 `y=Platform_near5.Global_Sales` 将平台作为 x 轴的标签,全球销售额作为 y 轴的值。
使用 `plt.title()` 设置第二个子图的标题为 "近五年游戏平台累计发行量",设置字体大小为 14。
最后一行的 `plt.show()` 用于显示图表。
阅读全文