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.
Deze oefening maakt deel uit van de cursus
Introduction to Python for Finance
Oefeninstructies
- Selectively import the
pyplotmodule ofmatplotlibasplt. - Plot a histogram of
it_pewith 8 bins. - Add the x-label as
'P/E ratio'and y-label as'Frequency'. - Display the plot.
Praktische interactieve oefening
Probeer deze oefening eens door deze voorbeeldcode in te vullen.
# Import matplotlib.pyplot with the alias plt
____
# Plot histogram
plt.____(____)
# Add x-label
plt.____('P/E ratio')
# Add y-label
plt.____('Frequency')
# Show plot
____