9951 explained code solutions for 126 technologies


python-matplotlibHow to plot multiple charts


import matplotlib.pyplot as plt

fig, axes = plt.subplots(nrows=2, ncols=2)

axes[0][0].plot([1,3,2])
axes[0][1].plot([8,2,5])
axes[1][0].plot([3,4,6,2,4,4,5,4,6])
axes[1][1].bar(['a','b','c'],[4,2,6])

plt.show()ctrl + c
import matplotlib.pyplot as plt

loads Matplotlib module to use plotting capabilities

.subplots(

creates set of charts on a single chart area

nrows

number of charts vertically (rows)

ncols

number of charts horizontally (cols)

axes

matrix (2-dimensional array) of charts (2x2 in our case) available to plot something

.plot(

plots line chart

.bar

plots bar chart

.show()

render chart in a separate window