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

Matplotlib에서 2D 히스토그램을 그리는 방법은 무엇입니까?

<시간/>

matplotlib에서 2D 히스토그램을 그리려면 다음 단계를 수행할 수 있습니다. -

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

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

  • Figure와 서브플롯 세트를 생성합니다.

  • hist2d()를 사용하여 x 및 y 플롯 방법.

  • 줄거리의 제목을 설정합니다.

  • 그림을 표시하려면 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 = 2 * np.random.randn(5000)
y = x + np.random.randn(5000)

fig, ax = plt.subplots()
_ = ax.hist2d(x[::10], y[::10])

ax.set_title('2D Histogram')

plt.show()

출력

Matplotlib에서 2D 히스토그램을 그리는 방법은 무엇입니까?