如何使x / y轴上的刻度线更明显?

时间:2018-11-14 17:49:17

标签: python matplotlib

我需要使x和y轴上的刻度线更加可见(更大和/或加粗),并且在刻度线之间用数字设置另一个数字,而没有任何数字。我已经检查了其他主题,并且知道例如XTickLength应该会有所帮助,但仍然不了解如何在我的脚本中定义它(在哪一行?)。还是我应该使用其他东西?我包括了一段代码和一张图片。谢谢你的来信。

...
ax4 = plt.subplot(414, sharex=ax1)
plt.xlim([2457483.24-2400000.5-57482.5,2457483.475-2400000.5-57482.5])
plt.ylim([2.6,3.8])
plt.plot(dataVf[colsVf[0]]-2400000.5-57482.5, dataVf[colsVf[2]], marker='^', markersize=8, linestyle='None', color='None', markeredgewidth=1, label='V')
plt.plot(dataRf[colsRf[0]]-2400000.5-57482.5, dataRf[colsRf[2]], marker='o', markersize=8, linestyle='None', color='None', markeredgewidth=1, label='R')
plt.legend(loc='upper left', ncol=2, numpoints=1, frameon=False, prop={'style':'italic','family':'serif','size':'xx-large'})
plt.yticks(np.arange(2.7, 3.85, +0.4),fontsize = 25)
plt.xticks(fontsize = 25)
plt.ylabel("FWHM('')",fontsize = 28)
plt.xlabel("MJD-57482.5",fontsize = 28) 

enter image description here

0 个答案:

没有答案