Home > Back-end >  Boxplot appear differently in definition in Jupyter Book, how can I do? (Windows 10)
Boxplot appear differently in definition in Jupyter Book, how can I do? (Windows 10)

Time:11-21

enter image description here

The left is a sample, the right is what I print. May I ask how to fix it?

CodePudding user response:

I solve the problem by this comment:

You can add a semicolon after the last statement to avoid Jupyter writing out its return value. So: sns.boxplot(...);. You can use sns.set(font_scale=0.8) at the start to change all the text sizes. – --JohanC

  • Related