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

Python의 로그 Y축 빈

<시간/>

Python에서 로그 Y축 빈을 플롯하려면 다음 단계를 수행할 수 있습니다. -

  • numpy를 사용하여 x 및 y 점을 만듭니다.

  • yscale() 을 사용하여 Y축 스케일을 설정합니다. 방법.

  • plot() 를 사용하여 x 및 y 점을 플로팅합니다. linestyle="dashdot" 메서드 및 label="y=log(x)" .

  • 줄의 레이블을 활성화하려면 legend()를 사용하세요. 방법.

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

예시

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.linspace(1, 100, 1000)
y = np.log(x)
plt.yscale('log')
plt.plot(x, y, c="red", lw=3, linestyle="dashdot", label="y=log(x)")
plt.legend()
plt.show()

출력

Python의 로그 Y축 빈