Having read this Q&A I know how I can specify optional arguments to a y label object, using either the pyplot namespace
plt.ylabel('y', rotation='horizontal', ha='right')
or the object oriented one
ax.set_ylabel(...)
but I don't know how I could possibly use the convenient syntax
ax.set(ylabel=???)
and still be able to specify additional parameters.