Skip to content

Commit

Permalink
Set verbose=False for Plotnine
Browse files Browse the repository at this point in the history
  • Loading branch information
jrycw committed Mar 5, 2025
1 parent f064203 commit 7050871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/src/python/user-guide/misc/visualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
ggplot(df, mapping=aes(x="sepal_width", y="sepal_length", color="species"))
+ geom_point()
+ labs(title="Irises", x="Sepal Width", y="Sepal Length")
).save(fig_path, dpi=300)
).save(fig_path, dpi=300, verbose=False)

with open(fig_path, "rb") as f:
png = base64.b64encode(f.read()).decode()
Expand Down

0 comments on commit 7050871

Please sign in to comment.