首页
学习
活动
专区
圈层
工具
发布

数据分析系列:绘制折线图(matplotlib)

作者:明天依旧可好 | 柯尊柏 工具:Jupyter notebook 环境:Python 3.6.5


与上一份代码相比我们仅仅是去掉了plt.plot()中参数x。

代码语言:javascript
复制
import matplotlib.pyplot as plt
import numpy as np

n = ["hubei","huangshi","wuhang","beijing","shanghai"]
m = [3,1,5,4,7]
plt.plot(n, m,color='red')
下一篇
举报
领券