- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个字典,为每个用户 ID 按顺序存储以下值:
绘制箱线图时,我希望在箱线图的腿中使用字典中的最小值和最大值。目前,它将这些绘制为异常值,我希望将它们绘制为箱形图腿的一部分。
我的代码:
for ID in Data:
#Min
Data1[ID].append(10)
#LQ
Data1[ID].append(20)
#Median
Data1[ID].append(30)
#UQ
Data1[ID].append(40)
#Max
Data1[ID].append(50)
#Plot
fig, ax = plt.subplots()
ax.boxplot(Data1.values())
最佳答案
这些腿被称为 mustache ,您可以通过在箱线图调用中设置参数 whis
来控制它们。在您的情况下,您可能希望将其设置为 'range'
ax.boxplot(Data1.values(), whis='range')
如 documentation 中所述:
whis : float, sequence, or string (default = 1.5) As a float, determines the reach of the whiskers to the beyond the first and third quartiles. In other words, where IQR is the interquartile range (Q3-Q1), the upper whisker will extend to last datum less than Q3 + whis* IQR). Similarly, the lower whisker will extend to the first datum greater than Q1 - whis* IQR. Beyond the whiskers, data are considered outliers and are plotted as individual points. Set this to an unreasonably high value to force the whiskers to show the min and max values. Alternatively, set this to an ascending sequence of percentile (e.g., [5, 95]) to set the whiskers at specific percentiles of the data. Finally, whis can be the string 'range' to force the whiskers to the min and max of the data.
请注意,您绘制的不是实际数据的箱线图,而是您提供的汇总统计数据的箱线图。这通常是不同的。如果您想使用汇总统计数据绘制原始数据的箱线图,请查看此 example和 matplotlib 方法 bxp
.
关于python - Matplotlib - 箱线图腿是最小值和最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52722554/
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 9
现在,我们有一个带有 Google Docs Api 和 2 legged oauth 的应用程序。但是,我们想迁移到使用 Oauth 2.0 的 Google Drive Api。 我们可以将 2
我是一名优秀的程序员,十分优秀!