技巧#

import matplotlib.pyplot as plt
import numpy as np

Zoom-in#

step = 0.1
x = np.arange(0, 10 + step, step)
y = x**2
_, ax = plt.subplots(figsize=[10, 8])
ax.plot(x, y)

axins = ax.inset_axes([0.1, 0.5, 0.4, 0.4])
axins.plot(x[:10], y[:10])

ax.indicate_inset_zoom(axins, lw=3)

axins.set_xticklabels("")
axins.set_yticklabels("")
plt.show()
../_images/4abed86d10e0ede79a986093f4a77217b58f98890ed04dd2fec69e1f04f4826f.png

Table#

_, ax = plt.subplots(figsize=(10, 6))

x = np.random.rand(5, 8) * 0.7

ax.plot(x.mean(axis=0), "-o", label="average per column")
ax.set(xticks=[])
ax.table(
    cellText=[[f"{xxx}%1.2f" for xxx in xx] for xx in x],
    cellColours=plt.cm.GnBu(x),
    fontsize="large",
    loc="bottom",
)
plt.show()
../_images/9a884b20b7aa86771770b07213bbf2516be3e8fb0c39f001350ab99b9dda9621.png

Broken Bars#

_, ax = plt.subplots(figsize=(10, 6))

x1 = [(5, 5), (20, 5), (20, 7)]
y1 = (2, 1)
ax.broken_barh(x1, y1, facecolors="green")

x2 = [(6, 2), (17, 5), (50, 2)]
y2 = (15, 1)
ax.broken_barh(x2, y2, facecolors="orange")

x3 = [(5, 2), (28, 5), (40, 2)]
y3 = (30, 1)
ax.broken_barh(x3, y3, facecolors="red")

ax.set(xlabel="Sales", ylabel="Days of the Month")
plt.show()
../_images/a650dac3113a1a53055cc4d63c4aa7b37121052125ea66656bee2d7ae0d50523.png

Transform#