When using Seaborn facetGrid plots. Is it possible to set the row variable label to the left (eg. as the first line of the two-line sub-plots y axes label)?
The default location is on the top as part of the sub-plot title. unfortunately the combined text sometimes gets too long to legitably fit into that crowded space. Then I tried to use margin_titles = True option when instantiate the facetGrid object. But in this case, the row variable label is outside to the right of the legend, which can be awkwardly too far from the chart.
So the possible easy ways to improve the aesthetic in my two-cent worth of thought:
- Move the margin title inside the legend when
margin_titles = True
andlegend_out=True
- Allow the row variable label to be displayed on the left before the y axis label.
- Other ideas?
Sorry, haven't accumulated enough points to be able to add a chart example.