Skip to content

Setting unique titles for xarray facetgrid #5823

Answered by spencerkclark
Murk89 asked this question in Q&A
Discussion options

You must be logged in to vote

If you'd like to have control over the axes directly, you can access them using the axes attribute of the returned FacetGrid object. For example:

for ax, title in zip(g.axes.flat, list("abcd")):
    ax.set_title(title)

This part of the documentation covers this and a few other useful features of the FacetGrid object.

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@Murk89
Comment options

@spencerkclark
Comment options

@Murk89
Comment options

Answer selected by Murk89
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants