我正在尝试生成类似的范围图 https://docs.python.org/2/library/multiprocessing.html#using-a-pool-of-workers
到目前为止,我的代码如下:
import seaborn as sns
import matplotlib.pyplot as plt
sns.set(style="whitegrid")
tips = sns.load_dataset("tips")
values=tips['total_bill']
ax = sns.boxplot(x=tips["total_bill"], width=0.5, showfliers=False)
plt.subplots_adjust(left=0.1, right=0.9, top=0.6, bottom=0.4)
plt.show()
我有两个问题。
我正在尝试手动将箱线图的“框”设置为从(较低)第5个百分点到(较高)95个百分点。我该如何在seaborn中做到这一点?
我可以在箱图中将外部值标记为“您的样本”吗?