subplots [xy]labels

Alex Goodman <goodma13@...2133...>
writes:

Try using the set_ylabel() and set_xlabel() methods for each Axes instance
instead, eg:

a[0].set_ylabel('f1')
...

works as intended, tx Alex