下面的代码:
df.boxplot(column = ['rate'], by = 'age', figsize=(9,7))
然而,这个箱线图有一个异常值,显示了非常小的箱。我需要编写以下代码:
#1st Subplot
df.boxplot(column = ['rate'], by = 'age', figsize=(9,7))
#2nd Subplot
df.boxplot(column = ['rate'], by = 'age', figsize=(9,7))
plt.ylim(0,2)
这意味着我需要2x1或1x2子图来显示:#1原始箱形图和#2缩放箱形图(ylim(0,2))
我该如何处理这个次要情节?
1条答案
按热度按时间2ic8powd1#
尝试将子图轴明确传递给Pandas图,然后可以单独调整它们的限制: