lgienapp / aquarel

Styling matplotlib made easy
MIT License
725 stars 20 forks source link

Pandas plots do not have a modified style applied #17

Open lgienapp opened 2 years ago

lgienapp commented 2 years ago

When using

with load_theme("umbra_light"):
    pd.Series({"ROOTS":1.6, "OPT":1.02, "GPT3":1.63, "The Pile":0.89}).sort_values().plot.bar()

the style is applied as expected. However, any set_ calls on the style are not. Instead using seaborn to plot instead of pandas fixes it. Why?