2.8. Multiple figures and plots

../../_images/matplotlib-subplot-multiple.png

2.8.1. Multiple Plots on one Figure

import matplotlib.pyplot as plt
import numpy as np
np.random.seed(0)


x1 = [x * 0.01 for x in range(0, 628)]
y1 = [np.sin(x * 0.01) + np.random.normal(0.0, 0.1) for x in range(0, 628)]

x2 = [x * 0.5 for x in range(0, round(63 / 5))]
y2 = [np.cos(x * 0.5) for x in range(0, round(63 / 5))]

plt.plot(x1, y1)
plt.plot(x2, y2, 'o-')

plt.show()  # doctest: +SKIP
../../_images/matplotlib-subplot-sine.png

2.8.2. Multiple Figures with single Plots

import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0.0, 10.0, 1000)
y = np.sin(x)

fig, ax = plt.subplots(nrows=2, ncols=2, figsize=(18, 5))

ax[0,0].plot(x, y, label='a')
ax[0,1].plot(x, y, label='b')
ax[1,0].plot(x, y, label='c')
ax[1,1].plot(x, y, label='d')

plt.show()  # doctest: +SKIP
../../_images/matplotlib-subplot-a.png

Figure 2.19. Multiple Figures with single Plots

import matplotlib.pyplot as plt
import numpy as np

def damp(t):
    return np.exp(-t) * np.cos(2*np.pi*t)


x1 = np.arange(0.0, 5.0, 0.1)
x2 = np.arange(0.0, 5.0, 0.02)
y2 = np.cos(2*np.pi*x2)


plt.figure(1, figsize=(15, 5))

plt.subplot(211)
plt.plot(x1, damp(x1), color='blue', marker='o', label='data')
plt.plot(x2, damp(x2), color='black', label='datapoints')

plt.subplot(212)
plt.plot(x2, y2, color='red', linestyle='--', label='signal')

plt.show()  # doctest: +SKIP
../../_images/matplotlib-subplot-b.png

Figure 2.20. Working with multiple figures and axes

2.8.3. Multiple Charts in Grid

../../_images/matplotlib-subplot-c.png

2.8.4. plt.plot() vs ax.plot()

fig = plt.figure()
plt.plot(data)
fig.show()
  1. Takes the current figure and axes (if none exists it will create a new one) and plot into them:

    line = plt.plot(data)
    
  2. In your case, the behavior is same as before with explicitly stating the axes for plot:

    ax = plt.axes()
    line = ax.plot(data)
    
  3. This approach of using ax.plot(...) is a must, if you want to plot into multiple axes (possibly in one figure). For example when using a subplots. Explicitly creates new figure - you will not add anything to previous one. Explicitly creates a new axes with given rectangle shape and the rest is the same as with 2:

    fig = plt.figure()
    ax = fig.add_axes([0,0,1,1])
    line = ax.plot(data)
    

    possible problem using figure.add_axes is that it may add a new axes object to the figure, which will overlay the first one (or others). This happens if the requested size does not match the existing ones.