1. Learn
  2. /
  3. Courses
  4. /
  5. Analyzing IoT Data in Python

Exercise

Histogram Plot

While it's important to know how the data looks, data distribution is equally important.

You can do this for the environmental dataset by plotting histograms.

pandas has been imported as pd, and matplotlib.pyplot as plt.

Instructions 1/2

undefined XP
    1
    2
  • Plot a histogram from df with 30 bins.
  • Label the Y-Axis as "Frequency".