How do I enlarge my boxplot?
本问题已经有最佳答案,请猛点这里访问。
我如何扩大我在朱彼特的箱线图?我找不到任何允许我这样做的可选参数。专门使用Seaborn。
您可以尝试在
1 | sns.set(rc={'figure.figsize':(11,8)}) |
其中,
您还可以通过传递字体缩放参数和样式来放大字体,以更改默认背景。使用来自[Seaborn BoxPlot Example][1]的示例:
1 2 3 4 5 6 7 | import seaborn as sns %matplotlib inline sns.set(rc={'figure.figsize':(11,8)}, font_scale=1.5, style='whitegrid') tips = sns.load_dataset("tips") sns.boxplot(x="day", y="total_bill", data=tips); |
Jupyter笔记本结果截图:
无变更的违约将导致:
在上述变更之后,将给出: