随笔 - 4326,  文章 - 1,  评论 - 32,  阅读 - 279万
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

contour:轮廓,等高线。

  • 为等高线上注明等高线的含义:

    cs = plt.contour(x, y, z)
    plt.clabel(cs, inline=1, fontsize=10)
  • plt.contourf 与 plt.contour 区别:

    • f:filled,也即对等高线间的填充区域进行填充(使用不同的颜色);
    • contourf:将不会再绘制等高线(显然不同的颜色分界就表示等高线本身),
  • 增加 colorbar;

    cb = plt.colorbar()
    cb.set_label('meters')

    默认 colorbar 是竖直放置,通过 orientation 关键字参数,可将其设置为水平放置;

    cb = plt.colorbar(orientation='horizontal')
posted on   未雨愁眸  阅读(535)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示