Question: Generate 10,000 normal random numbers with mean =0 and standard deviation =1 (the default). Plot them on a histogram with 25 bins. Your submission should
Generate 10,000 normal random numbers with mean =0 and standard deviation =1 (the default). Plot them on a histogram with 25 bins.
Your submission should include a plot. Make sure to import matplotlib.pyplot as plt. Use plt.hist but not plt.show in your submission.
In order to obtain the histogram values for grading, please keep the form of the hist statement with the assignment below.
Starter Code: import numpy as np import matplotlib.pyplot as plt counts,bins,bars = plt.hist( _____ )
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
