Matplotlib के साथ बेसिक प्लॉट्स

इंटरमीडिएट Python

Hugo Bowne-Anderson

Data Scientist at DataCamp

Matplotlib के साथ बेसिक प्लॉट्स

  • विज़ुअलाइज़ेशन

बार चार्ट आइकन

  • डेटा स्ट्रक्चर

कोड आइकन

  • कंट्रोल स्ट्रक्चर्स

  • केस स्टडी

इंटरमीडिएट Python

डेटा विज़ुअलाइज़ेशन

  • डेटा एनालिसिस में बहुत महत्वपूर्ण

    • डेटा एक्सप्लोर करें
    • इनसाइट्स रिपोर्ट करें

इंटरमीडिएट Python

1 Source: GapMinder, Wealth and Health of Nations
इंटरमीडिएट Python

1 Source: GapMinder, Wealth and Health of Nations
इंटरमीडिएट Python

1 Source: GapMinder, Wealth and Health of Nations
इंटरमीडिएट Python

Matplotlib

import matplotlib.pyplot as plt

year = [1950, 1970, 1990, 2010]
pop = [2.519, 3.692, 5.263, 6.972]
plt.plot(year, pop)
plt.show()

इंटरमीडिएट Python

Matplotlib

इंटरमीडिएट Python

Matplotlib

इंटरमीडिएट Python

स्कैटर प्लॉट

import matplotlib.pyplot as plt
year = [1950, 1970, 1990, 2010]
pop = [2.519, 3.692, 5.263, 6.972]
plt.plot(year, pop)
plt.show()
इंटरमीडिएट Python

स्कैटर प्लॉट

import matplotlib.pyplot as plt
year = [1950, 1970, 1990, 2010]
pop = [2.519, 3.692, 5.263, 6.972]
plt.scatter(year, pop)
plt.show()

इंटरमीडिएट Python

अभ्यास करते हैं!

इंटरमीडिएट Python

Preparing Video For Download...