Session Ready
Exercise

Histogram of P/E ratios

To visualize and understand the distribution of the P/E ratios in the IT sector, you can use a histogram.

The array it_pe from the previous exercise is available in your workspace.

Instructions
100 XP
  • Selectively import the pyplot module of matplotlib as plt.
  • Plot a histogram of it_pe with 8 bins.
  • Add the x-label as 'P/E ratio' and y-label as 'Frequency'.
  • Display the plot.