November 2018
Beginner to intermediate
214 pages
5h 2m
English
We will begin by importing the data. Start by generating normal Gaussian distributions with a couple of different properties, as follows:
# Generate some Normal distributions with different propertiesrands1 = np.random.normal(size=500)rands2 = np.random.normal(scale=2, size=500)rands3 = np.random.normal(loc=1, scale=0.5, size=500)gaussians = (rands1, rands2, rands3)
# Basic Boxplotplt.boxplot(gaussians);
Following is the output of the preceding code:
This kind of box plot was invented at Bell Labs about fifty ...
Read now
Unlock full access