Hue की ताकत

स्प्रेडशीट उपयोगकर्ताओं के लिए Python

Chris Cardillo

Data Scientist

हमारा अच्छा बारप्लॉट

प्लॉट

स्टोर द्वारा राजस्व Final.png

प्लॉट के पीछे का डेटा

बेसिक प्लॉट को चलाने वाला डेटा.png

स्प्रेडशीट उपयोगकर्ताओं के लिए Python

और सूक्ष्म बारप्लॉट

नए प्लॉट के पीछे का डेटा

फल स्टोर: स्टोर और नाम के अनुसार सॉर्टेड.png

स्प्रेडशीट उपयोगकर्ताओं के लिए Python

और सूक्ष्म बारप्लॉट

नए प्लॉट के पीछे का डेटा

फल स्टोर: स्टोर और नाम के अनुसार सॉर्टेड.png

नया प्लॉट

स्टोर द्वारा राजस्व - फलों का ब्रेकडाउन.png

स्प्रेडशीट उपयोगकर्ताओं के लिए Python

Hue

sns.barplot(x='store',
            y='revenue',
            data=fruit_store_summary,
            hue='product_name')

स्टोर द्वारा राजस्व - फलों का ब्रेकडाउन.png

स्प्रेडशीट उपयोगकर्ताओं के लिए Python

plt.legend()

sns.barplot(x='store',
            y='revenue',
            data=fruit_store_summary,
            hue='product_name')

plt.legend(bbox_to_anchor=(1, 1))

स्टोर द्वारा राजस्व - फलों का ब्रेकडाउन.png

स्प्रेडशीट उपयोगकर्ताओं के लिए Python

सब कुछ साथ में

sns.set_style('whitegrid')

sns.barplot(x='store',
            y='revenue',
            data=fruit_store_summary,
            hue='product_name')

plt.legend(bbox_to_anchor=(1, 1))

plt.title('Revenue by Store - Fruit Breakdown')
plt.xlabel('Store')
plt.ylabel('Revenue (USD)')
sns.despine()
plt.show()

स्टोर द्वारा राजस्व - फलों का ब्रेकडाउन.png

स्प्रेडशीट उपयोगकर्ताओं के लिए Python

अब आपकी बारी!

स्प्रेडशीट उपयोगकर्ताओं के लिए Python

Preparing Video For Download...