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

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

<시간/>

matplotlib에서 hexbin 히스토그램을 플롯하려면 다음 단계를 수행할 수 있습니다. -

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

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

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

  • hexbin()을 사용하여 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.hexbin(x[::10], y[::10], gridsize=20, cmap='plasma')

ax.set_title('Hexbin Histogram')

plt.show()

출력

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