所以我有一个看起来像这样的情节:
我希望x轴上的数字从1到10,所以我可以将标签写为"时间(微秒)"
有办法做到这一点吗?
由于
有人要求查看代码。我故意将它排除在外,因为我的问题只是一个演示案例 - 改变x轴上的值而不改变绘图显示的任何数据。考虑到我需要的相对简单的事情,我使用的代码有点过于广泛,但仅供参考:
def Asymmetry(Ch1,Ch2):
#Turning Ch1 and Ch2 data into bins of equal size
timesCh1, bins1 = numpy.histogram(Ch1,bins=200)
timesCh2, bins2 = numpy.histogram(Ch2,bins=200)
#Converting the int values in the time arrays to flaot to allow for division in next line
timesCh1 = timesCh1.astype(numpy.float)
timesCh2 = timesCh2.astype(numpy.float)
#Combining Ch1 and Ch2 data to find asymmetry
Asymmetry = (timesCh1-timesCh2)/(timesCh1+timesCh2)
A0times = numpy.linspace(0,10E-6,200)
P_Lerror = numpy.sqrt(timesCh1)
P_Rerror = numpy.sqrt(timesCh2)
A0error = 2.0*(numpy.sqrt((1.0/(numpy.power(timesCh1 + timesCh2,4.0)))*(numpy.power(timesCh1,2.0)*numpy.power(P_Lerror,2.0)+numpy.power(timesCh2,2.0)*numpy.power(P_Rerror,2.0))))
#Asymmetry function
def A0(t, B, beta): #t = time, B = magnetic field, beta = detector angle
gamma = 851.616E6
return (-1.0/3.0)*((numpy.sin(gamma*B*t - beta)-numpy.sin(gamma*B*t + beta))/(2.0*beta))
popt,pcov = curve_fit(A0, A0times, Asymmetry,p0=(0.007,0.754),sigma=A0error, absolute_sigma=True)
errors=numpy.sqrt(numpy.diag(pcov))
#Set x-axis
new_time = numpy.linspace(0,10E-6,1000)
new_A0=A0(new_time,*popt)
pyplot.plot(A0times,Asymmetry, label = 'Raw data')
pyplot.errorbar(A0times,Asymmetry,yerr=A0error, fmt=None, label='Error bars')
pyplot.plot(new_time, new_A0,"r-", label = "Fitted data")
pyplot.legend(loc=4)
pyplot.title('py15csa - Asymmetry Data')
pyplot.xlabel('Time (microseconds)')
pyplot.ylabel('Asymmetry')
pyplot.show()
答案 0 :(得分:1)
将您的时间数据设置为微秒,即将时间数据乘以1,000,000。例如:
import matplotlib.pyplot as plt
import numpy as np
# Generate some data
x = np.arange(1000) / 1000 * 10e-6
y = np.sin(2 * np.pi * 1e6 * x)
plt.xkcd()
plt.plot(1e6 * x, y)
plt.xlabel('Time ($\mu$s)')
plt.ylabel('Velocity (furlongs/fortnight)')
plt.title('This is a Sample Plot')
plt.grid(True)
plt.show()
生成显示微秒而不是秒的图。请注意,这不会改变您的数据,它只会为图表生成1E6的复制时间。
答案 1 :(得分:0)
如果您使用pylab导入matplotlib:
import pylab
pylab.xlim([0,10])
可替换地:
import matplotlib.pyplot as plt
plt.xlim([0,10])
您必须分享您正在使用的代码。
如果要设置x轴刻度,可以执行以下操作:
plt.xticks([0, 2, 4, 6, 8, 10])