Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Pylab에서 생성한 그림에서 Y축을 어떻게 제거합니까?

<시간/>

Pylab에서 생성한 그림에서 Y축을 제거하려면 플롯의 현재 축을 가져와서 set_visible(False)을 사용할 수 있습니다. 방법.

단계

  • Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.

  • numpy를 사용하여 x 및 y 데이터 포인트를 만듭니다.

  • plot()을 사용하여 x 및 y 데이터 포인트를 플로팅합니다. 방법.

  • 현재 Figure의 현재 축을 가져옵니다.

  • Y축에 대해 가시성을 False로 설정합니다.

  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

import numpy as np
import pylab

# Set the figure size
pylab.rcParams["figure.figsize"] = [7.50, 3.50]
pylab.rcParams["figure.autolayout"] = True

# Random data points
x = np.random.rand(10)
y = np.random.rand(10)

# Plot the data points
pylab.plot(x, y)

# Get the current axis
ax = pylab.gca()

# Set Y-axis visibility to False
ax.yaxis.set_visible(False)

# Display the plot
pylab.show()

출력

다음 출력을 생성합니다 -

Pylab에서 생성한 그림에서 Y축을 어떻게 제거합니까?