जटिल jointplots
jointplot कई JointGrid फंक्शनों के ऊपर बना एक सुविधाजनक रैपर है.
हालाँकि, आप स्टैंडर्ड jointplot के ऊपर कुछ JointGrid प्लॉट्स को ओवरले कर सकते हैं.
इस उदाहरण में, हम उन राइडर्स के अलग-अलग डिस्ट्रीब्यूशंस देख सकते हैं जिन्हें casual माना गया है बनाम जो registered हैं.
यह अभ्यास पाठ्यक्रम का हिस्सा है
इंटरमीडिएट Data Visualization with 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()