解析:
来看一下plot()
的使用语法
Signature: plt.plot(*args, **kwargs)
Docstring:
Plot y versus x as lines and/or markers.
Call signatures::
plot([x], y, [fmt], data=None, **kwargs)
plot([x], y, [fmt], [x2], y2, [fmt2], ..., **kwargs)
The coordinates of the points or line nodes are given by *x*, *y*.
其中plot([x], y, [fmt], [x2], y2, [fmt2], ..., **kwargs)
指出了可以连续使用多个x/y/fmt参数来同时画多个图形。
根据上例,可得知,fmt
参数,第一个字母表示颜色,字母后面的字符表示形状,b*
则表示的是蓝色的星号,g^
表示的则是绿色的三角,ys
表示的是黄色的方块。