在轴坐标上使用自定义刻度线

时间:2018-09-02 10:43:53

标签: python matplotlib

我正在matplotlib中绘制一些函数。但是我想更改通常的x和y坐标。例如,我在p$data中绘制了y=sin(x)。但是x轴以这种方式显示[-pi, pi],而我想要x:1, 2, 3,...可以吗?

我的代码

-pi, 0, pi,...

输出 enter image description here

如何更改轴坐标上的标记?谢谢。

2 个答案:

答案 0 :(得分:2)

在这里您可以显示您想要的任何pi范围。只需在plt.plot

之后将以下行添加到您的代码中
xlabs = [r'%d$\pi$'%i if i!=0 else 0 for i in range(-2, 3, 1)]
xpos = np.linspace(-2*np.pi, 2*np.pi, 5)
plt.xticks(xpos, xlabs)

输出 enter image description here

答案 1 :(得分:2)

是的,您可以在轴上有自定义的刻度线,并将它们等距设置。为此,您需要将刻度线以及相关的值设置为一个序列:

import matplotlib as mpl
mpl.rc('text', usetex = True)
mpl.rc('font', family = 'serif')
import matplotlib.pyplot as plt
import numpy as np


plt.gca().set_aspect('equal', adjustable='box')
plt.style.use(['ggplot','dark_background'])

x = np.arange(-np.pi,np.pi,0.001)
y = np.sin(x)

# the following two sequences contain the values and their assigned tick markers
xx = [-np.pi + idx*np.pi/4 for idx in range(10)]
xx_t = ['$-\\pi$', '$\\frac{-3\\pi}{4}$', '$\\frac{-\\pi}{2}$', '$\\frac{-\\pi}{4}$', '0', 
        '$\\frac{\\pi}{4}$', '$\\frac{\\pi}{2}$', '$\\frac{3\\pi}{4}$', '$\\pi$']
plt.xticks(xx, xx_t)   # <-- the mapping happens here

plt.xlabel('$x$')
plt.ylabel('$y$')
plt.plot(x,y, label='$y=\sin x$')
plt.legend()
plt.show()

enter image description here