如何放大盒子图?

时间:2018-03-13 19:12:00

标签: python pandas jupyter seaborn

enter image description here

如何在jupyter中放大我的盒子图?我找不到允许我这样做的任何可选参数。特别是使用seaborn。

1 个答案:

答案 0 :(得分:1)

您可以尝试使用ReadOnly中的rc参数:

seaborn

其中sns.set(rc={'figure.figsize':(11,8)}) 指11英寸宽和8英寸高。

您还可以通过传递font_scale参数和样式来放大字体,以更改默认背景。使用[seaborn boxplot示例] [1]中的示例:

(11,8)

Jupyter Notebook中的结果截图:

没有更改的默认值会给出: enter image description here

如上所述改变后会给出: enter image description here