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

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


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

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')

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_38251616/article/details/96196347