gpt4 book ai didi

python - 如何在 Python 中创建具有不同线型的主要和次要网格线

转载 作者:IT老高 更新时间:2023-10-28 21:06:58 26 4
gpt4 key购买 nike

我目前正在使用 matplotlib.pyplot 来创建图形,并希望主要网格线为实心和黑色,次要网格线为灰色或虚线。

在网格属性中,which=both/major/mine,然后color和linestyle都是由linestyle简单定义的。有没有办法只指定次要线型?

到目前为止,我拥有的适当代码是

plt.plot(current, counts, 'rd', markersize=8)
plt.yscale('log')
plt.grid(b=True, which='both', color='0.65', linestyle='-')

最佳答案

其实很简单,只要分别设置majorminor:

In [9]: plot([23, 456, 676, 89, 906, 34, 2345])
Out[9]: [<matplotlib.lines.Line2D at 0x6112f90>]

In [10]: yscale('log')

In [11]: grid(b=True, which='major', color='b', linestyle='-')

In [12]: grid(b=True, which='minor', color='r', linestyle='--')

带有小网格的问题是您还必须打开小刻度线。在上面的代码中,这是由 yscale('log') 完成的,但也可以通过 plt.minorticks_on() 完成。

enter image description here

关于python - 如何在 Python 中创建具有不同线型的主要和次要网格线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9127434/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com