【Python画图】绘制双坐标图
程序员文章站
2024-03-08 11:08:22
...
使用Python绘制双坐标图,代码及结果显示如下。
import matplotlib.pyplot as plt
fig = plt.figure(figsize=(10,6))
#显示中文
plt.rcParams['font.sans-serif'] = ['SimHei']
ax1 = fig.add_subplot(111)
ax1.plot(df['yearmonth'], df['new'],)
ax1.set_ylabel('每月新增投资者数目(单位:万户)',fontdict={'weight': 'normal', 'size': 15})
ax1.set_title("投资者用户数统计",fontdict={'weight': 'normal', 'size': 15})
ax2 = ax1.twinx() # this is the important function
ax2.plot(df['yearmonth'], df['total'], 'r')
ax2.set_ylabel('总投资者数目(单位:万户)',fontdict={'weight': 'normal', 'size': 15})
ax2.set_xlabel('Same')
#参数rotation设置坐标旋转角度,参数fontdict设置字体和字体大小
ax1.set_xticklabels(df['yearmonth'],rotation=90,fontdict={'weight': 'normal', 'size': 15})
plt.show()
上一篇: JAVA代码开发规范
下一篇: Asp.net mvc 数据调用示例代码
推荐阅读
-
【Python画图】绘制双坐标图
-
Python画图包matplotlib——散点图、折线图的绘制
-
Python matplotlib 绘制双Y轴曲线图的示例代码
-
Python实现绘制双柱状图并显示数值功能示例
-
python matplotlib画图库学习绘制常用的图
-
Python matplotlib画图实例之绘制拥有彩条的图表
-
Python:利用matplotlib库绘制统计图(饼图、直方图、散点图、极坐标图和网格图)
-
【python数据分析(25)】Matplotlib库基本图形绘制(2) (直方图、密度图、散点图、矩阵散点图、极坐标图、雷达图、极轴图、箱型图)
-
Python学习-Matplotlib库绘制各类常见统计图(散点图、条形图、直方图、饼状图、极坐标图)
-
python绘制双柱形图代码实例