Grouping and summing: the beginner's pivot table

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

Chris Cardillo

Data Scientist

Fruit stores

बड़ा fruit df

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

Fruit stores

बड़ा fruit store कॉलम

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

Fruit stores

बड़ा fruit product कॉलम

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

Fruit stores

बड़ा fruit quantity कॉलम

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

Fruit stores

बड़ा fruit revenue कॉलम

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

स्प्रेडशीट में पिवटिंग

Raw Data

बड़ा fruit df

Pivot Table

बड़ा fruit value पिवट

Pivot Table Editor

बड़ा fruit value पिवट टेबल एडिटर

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

स्प्रेडशीट में पिवटिंग

Raw Data

बड़ा fruit df

Pivot Table

बड़ा fruit value पिवट

Pivot Table Editor

बड़ा fruit value पिवट टेबल एडिटर - वैल्यू फ़ोकस

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

.sum()

fruit_sales.head()

fruit sales head

fruit_sales.sum(numeric_only=True)

fruit sales sum

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

.sum() के साथ शुद्ध सारांश

स्प्रेडशीट में

बड़ा fruit value पिवट

Python में
fruit_sales.sum(numeric_only=True)

fruit sales sum

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

स्प्रेडशीट में पिवट टेबल की rows का उपयोग

Pivot Table

fruit sales store पिवट टेबल

Pivot Table Editor

बड़ा fruit पिवट टेबल एडिटर - stores हाइलाइटेड

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

Python में सरल पिवट टेबल - .groupby().sum()

Python में
fruit_sales.groupby('store', as_index=False).sum()

fruit sales store सारांश

स्प्रेडशीट में

fruit sales store पिवट टेबल

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

Python में सरल पिवट टेबल - .groupby().sum()

Python में
fruit_sales.groupby('store', as_index=False).sum()
स्प्रेडशीट पिवट टेबल एडिटर में

सिर्फ Rows और Values

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

Python में सरल पिवट टेबल - .groupby().sum()

Python में
fruit_sales.groupby('store', as_index=False).sum()

fruit sales store सारांश

स्प्रेडशीट में

fruit sales store पिवट टेबल

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

अब आपकी बारी!

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

Preparing Video For Download...