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

Seaborn을 사용하여 동일한 그래프에 두 개의 바이올린 플롯 시리즈를 그리는 방법은 무엇입니까?

<시간/>

Seaborn을 사용하여 동일한 그래프에 두 개의 바이올린 플롯 시리즈를 표시하려면 다음 단계를 수행할 수 있습니다.

단계

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

  • 온라인 리포지토리에서 예제 데이터세트를 로드합니다(인터넷 필요).

  • violinplot()을 사용하여 바이올린 플롯 만들기 방법.

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

예시

# Import Seaborn and Matplotlib
import seaborn as sns
from matplotlib import pyplot as plt

# Set the figure size
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True

# Load an example dataset
tips = sns.load_dataset("tips")

# Create a violin plot using Seaborn
sns.violinplot(x="day", y="total_bill", hue="time", data=tips)

# Display the plot
plt.show()

출력

다음 출력을 생성합니다 -

Seaborn을 사용하여 동일한 그래프에 두 개의 바이올린 플롯 시리즈를 그리는 방법은 무엇입니까?