我正在matplotlib中绘制一些函数。但是我想更改通常的x和y坐标。例如,我在p$data
中绘制了y=sin(x)
。但是x轴以这种方式显示[-pi, pi]
,而我想要x:1, 2, 3,...
可以吗?
我的代码
-pi, 0, pi,...
如何更改轴坐标上的标记?谢谢。
答案 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)
答案 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()