Skip to content
Advertisement

How can I enumerate and add margin_titles to each subplot in a seaborn lmplot facetgrid?

I have the following attached lmplot facetgrid lmplot facetgrid

To start with, I want to simplify the title of each subplot, to only have corpus = {corpus name}.

I am generating these plots using the lmplot as per

JavaScript

I want to use the facetgrid margin_title option to put the measure value on the right y-axis, but get lmplot() got an unexpected keyword argument 'margin_titles'

I then tried using a facetgrid, as per:

JavaScript

but then I get an error about lmplot() got an unexpected keyword argument 'color' (cannot figure out why that is being thrown?).

My second problem is that I want to add a letter/enumeration to each subplot’s title, as in (a), ..., (i), but for the life of me cannot figure out how to do this.

Advertisement

Answer

Because of your custom needs, consider iterating through all the axes of the FacetGrid after running your lmplot. Regarding your specific error, seaborn.lmplot is a FacetGrid so will conflict if nested in another FacetGrid as tried in your second attempt. Also, in below solution, do not re-assign g to axes setup which returns NoneType:

JavaScript

Input (purely random data for demonstration)

JavaScript

Output

FacetGrid Plot Output

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement