Search code examples
pythoninspectionplotnine

How to find what can be tuned in theme()


New to python, I'm trying to fine tuning the plotnine graph, and explore what can be done in the theme() function. I'm just wondering what is the general way to find out what else is available for me to play with.

theme(plot_title = element_text(size=10, text='tile'), 
    axis_title_y = element_text(size=7, text='tlab'), 
    axis_title_x = element_text(size=7,text='xlab'))

Solution

  • In plotnine, they are called themeables.