복합 jointplot
jointplot은 여러 JointGrid 함수에 대한 편의 래퍼입니다.
하지만 표준 jointplot 위에 일부 JointGrid 플롯을 겹쳐 그릴 수도 있습니다.
이 예제에서는 casual 라이더와 registered 라이더의 서로 다른 분포를 비교해 보겠습니다.
이 연습은 강의의 일부입니다
Seaborn으로 배우는 중급 데이터 시각화
실습형 인터랙티브 연습
이 예제를 이 샘플 코드를 완성하여 풀어보세요.
# Create a jointplot of temp vs. casual riders
# Include a kdeplot over the scatter plot
g = sns.___(x="temp",
y="casual",
kind='___',
data=df,
marginal_kws=dict(bins=10))
g.plot_joint(sns.___)
plt.show()
plt.clf()