Login using Social Account
     Continue with GoogleLogin using your credentials
Generate 10000 random normally distributed numbers and plot the density curve along with the median and mean.
Generate 10000 exponentially distributed numbers using np.random.exponential(size=100000) and plot the density curve along with the median and mean.
Hints:
norm_data = pd.DataFrame(np.random.normal(size=100000))
skewed_data = pd.DataFrame(np.random.exponential(size=100000))
skewed_data.plot(kind="density",figsize=(10,10),xlim=(-1,5))
Please keep the plots handy to answer to answer the questions that follow.
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
No hints are availble for this assesment
Answer is not availble for this assesment
Loading comments...