美文网首页
matplotlib 坐标轴等距离代表不同数据画图

matplotlib 坐标轴等距离代表不同数据画图

作者: 九乡河的小香瓜 | 来源:发表于2020-05-10 23:40 被阅读0次

    如图,y轴的刻度之间距离是相等的,但是分别表示0,1,10,100,1000。。。


    截屏2020-05-10下午11.40.30.png

    解决:设置y轴为对数标度
    set_yscale('log')

    如果是直方图的话,有一个参数log设置为true即可
    .hist(log=True)

    相关文章

      网友评论

          本文标题:matplotlib 坐标轴等距离代表不同数据画图

          本文链接:https://www.haomeiwen.com/subject/nwyenhtx.html