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

Matplotlib의 Seaborn 라인 플롯에 점선을 그리는 방법은 무엇입니까?

<시간/>

Seaborn 라인 플롯에 점선을 그리려면 linestyle="dashed"를 사용할 수 있습니다. lineplot()의 인수에서 .

단계

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

  • x 만들기 및 y numpy를 사용하는 데이터 포인트.

  • lineplot() 사용 x 메서드 및 y 인수의 데이터 포인트 및 linestyle="dashed" .

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

예시

import seaborn as sns
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.random.rand(10)
y = np.random.rand(10)
ax = sns.lineplot(x=x, y=y, linestyle="dashed")
plt.show()

출력

Matplotlib의 Seaborn 라인 플롯에 점선을 그리는 방법은 무엇입니까?