데이터분석/시각화

[타이타닉 데이터] 바이올린 플룻

씩씩한 IT블로그 2020. 10. 8. 01:20
반응형
#바이올린 플룻

#왼쪽 그래프
f, ax = plt.subplots(1,2,figsize=(18,8)) #1행 2열, 크기
# x, y, 기준, 데이터, split(생존과 사망을 합칠지 분리할지), 왼쪽그래프
sns.violinplot("Pclass", "Age", hue="Survived", data=train, split=True, ax=ax[0]) 
ax[0].set_title('Pclass and Age vs Survived') #제목
ax[0].set_yticks(range(0, 110, 10)) #y축의 단위 (최소,최대,단위)

#오른쪽 그래프
sns.violinplot("Survived","Age", hue="Sex", data=train, split=True, ax=ax[1])
ax[1].set_title('Sex and Age vs Survived')
ax[1].set_yticks(range(0, 110, 10))
plt.show()

반응형