Closed
Description
And messes quite badly…
import matplotlib.pyplot as plt
import numpy as np
types = np.array([b"1.0", b"11.0", b"6.0"])
counts = np.array([544, 631, 55])
fig, axes = plt.subplots(ncols=2)
axes[0].bar(types, counts)
types = np.array(["1.0", "11.0", "6.0"])
counts = np.array([544, 631, 55])
axes[1].bar(types, counts)
yields (on matplotlib
on matplotlib version "2.0.0b4+2254.gf544a83"
Neither of those plots are correct.