March 2019
Intermediate to advanced
642 pages
22h 54m
English
Let's look at how to plot histograms, as follows:
import numpy as np import matplotlib.pyplot as plt
# Input data apples = [30, 25, 22, 36, 21, 29] oranges = [24, 33, 19, 27, 35, 20] # Number of groups num_groups = len(apples)
# Create the figure fig, ax = plt.subplots() # Define the X axis indices = np.arange(num_groups) # Width and opacity of histogram bars bar_width = 0.4 opacity = 0.6
# Plot the values hist_apples ...
Read now
Unlock full access