I have made a graph in Matplotlib and want to change the justification of my rotated y-axis label.
In this code example, the text "This is an example plot" should be justified left.
import matplotlib.pyplot as plt
figure, axes = plt.subplots()
axes.plot([0, 1], [0, 1])
axes.set_ylabel('This is an\nexample plot', rotation=0)
axes.yaxis.set_label_coords(0.1, 0.9)
plt.show()

