python画图一条线两种颜色_Python:如何以不同的颜色绘制一条线

有几种不同的方法可以做到这一点。“最佳”方法主要取决于要绘制的线段数。

如果您只是要绘制少量(例如10条)线段,则可以执行以下操作:import numpy as npimport matplotlib.pyplot as pltdef uniqueish_color():

"""There're better ways to generate unique colors, but this isn't awful."""

return plt.cm.gist_ncar(np.random.random())xy = (np.random.random((10, 2)) - 0.5).cumsum(axis=0)fig, ax = plt.subplots()for start, stop in zip(xy[:-1], xy[1:]):

x, y = zip(start, stop)

ax.plot(x, y, color=uniqueish_color())plt.show()

5d8c1ffc0001f6d605000377.jpg

但是,如果要绘制具有一百万个线段的图形,绘制起来将非常缓慢。在这种情况下,请使用LineCollection。例如import numpy as npimport matplotlib.pyplot as pltfrom matplotlib.collections import LineCollectionxy = (np.random.random((1000, 2)) - 0.5).cumsum(axis=0)# Reshape things so that we have a sequence of:# [[(x0,y0),(x1,y1)],[(x0,y0),(x1,y1)],...]xy = xy.reshape(-1, 1, 2)segments = np.hstack([xy[:-1], xy[1:]])fig, ax = plt.subplots()coll = LineCollection(segments, cmap=plt.cm.gist_ncar)coll.set_array(np.random.random(xy.shape[0]))ax.add_collection(coll)ax.autoscale_view()plt.show()

5d8c200000012a3405000377.jpg

对于这两种情况,我们都只是从“ gist_ncar”颜色放大器中绘制随机颜色。在这里查看颜色图(gist_ncar大约是向下的2/3):http ://matplotlib.org/examples/color/colormaps_reference.html

  • 2
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值