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

Matplotlib에서 공동 이변량 분포를 만드는 방법은 무엇입니까?

<시간/>

matplotlib에서 공동 이변량 분포를 만들기 위해 scatter를 사용할 수 있습니다. 방법.

단계

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

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

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

  • scatter()를 사용하여 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.scatter(x, y, alpha=0.08, cmap="copper", c=x)

plt.show()

출력

Matplotlib에서 공동 이변량 분포를 만드는 방법은 무엇입니까?