Home > OS >  Moving Graph Titles in the Y axis of Subplots
Moving Graph Titles in the Y axis of Subplots

Time:07-26

This question is adapted from this enter image description here

CodePudding user response:

Something like this? This is the only other way i can think of.

from matplotlib import pyplot as plt
import numpy as np

fig, axes = plt.subplots(nrows=2)
ax0label = axes[0].set_ylabel('Axes 0')
ax1label = axes[1].set_ylabel('Axes 1')
ax01 = axes[0].twinx()
ax02 = axes[1].twinx()
ax01.set_ylabel('title')
ax02.set_ylabel('title')


fig.tight_layout()
plt.show()

right labels

  • Related