I want to be able to find specific setting/need in Matplotlib using only it's site (docs) without web search etc. For example, I know wanted to change size of label of y-axis. I tried search on the site for label size
and clicked top search result (not just because it was top, but is was about axes, not present term in search but exactly missing term of what I was looking for): https://matplotlib.org/api/axis_api.html?highlight=label%20size.
There I was able to find size
word for ticks only. It would be strange if the tool did not have option to change axis label size and web search found the solution: How do I set the figure title and axes labels font size in Matplotlib? : plt.ylabel('ylabel', fontsize=16)
.
How can I find that solution (or some working other) via usage of Matplotlib docs site/tree?