![](https://i-blog.csdnimg.cn/columns/default/20201014180756780.png?x-oss-process=image/resize,m_fixed,h_224,w_224)
可视化
anis_ry
这个作者很懒,什么都没留下…
展开
-
Python pyplot style
在matplotlib 中 提供了很多样式来美化绘图。在plt.style.available中import numpy as npimport matplotlib.pyplot as pltimport matplotlib as mplprint(plt.style.available)plt.style.use('grayscale')[out]:['bmh', 'clas...原创 2019-06-14 12:27:03 · 1489 阅读 · 0 评论 -
matplotlib plot 折线图参数
matplotlibimport numpy as np# evenly sampled time at 200ms intervalst = np.arange(0., 5., 0.2)# red dashes, blue squares and green trianglesplt.plot(t, t, 'r--', t, t**2, 'bs', t, t**3, 'g^')plt...原创 2019-06-15 12:56:20 · 1194 阅读 · 0 评论