Is data normally distributed?
A histogram is an efficient visual tool to examine whether your data is normally distributed, or centered around the mean.
matplotlib.pyplot
is imported as plt
and the array prices
is available in your workspace.
Diese Übung ist Teil des Kurses
Introduction to Python for Finance
Anleitung zur Übung
- Plot a histogram of
prices
with 100 bins to confirm that the data is normally distributed. - Display the plot.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Plot histogram
____(prices, bins=____)
# Display plot
plt.show()