Answers for "subplots horizontal"

0

subplots horizontal

fig, (ax1, ax2) = plt.subplots(1, 2)
fig.suptitle('Horizontally stacked subplots')
ax1.plot(x, y)
ax2.plot(x, -y)
Posted by: Guest on April-19-2021

Browse Popular Code Answers by Language