그래프에서 xxick을 제거하는 방법 세미록스 플롯이 있는데 xxicks를 제거하고 싶습니다.노력했습니다. plt.gca().set_xticks([]) plt.xticks([]) ax.set_xticks([]) 그리드는 사라지지만(정상) 작은 눈금(주 눈금 위치)은 남아 있습니다.어떻게 제거합니까?그 방법은 이런 것들에 매우 유용합니다.이 코드는 주눈금과 보조 눈금을 끄고 x축에서 레이블을 제거합니다. 다음을 위한 기능도 있습니다.matplotlib.axes.Axes물건들. from matplotlib import pyplot as plt plt.plot(range(10)) plt.tick_params( axis='x', # changes apply to the x-axis which='both', # ..