在R中的binom包中更改binom.density.plot的x轴

时间:2015-10-01 20:13:13

标签: r ggplot2

我正准备一些材料来显示贝叶斯可信区间和频繁信任区间之间的差异,并希望直观地展示在0%的案例满足特定条件的情况下如何解释BCI:

library(binom)
temp <- binom.bayes(0, 100)
binom.bayes.densityplot(temp)

!Result of binom.bayes.densityplot 1

我想更改x轴,以便更明显地显示间隔结束的位置,但我无法弄清楚如何在binom包中“破解”以更改x轴。包的文档表明它使用ggplot2包来创建图表。

1 个答案:

答案 0 :(得分:0)

binom.bayes.densityplot(temp) + coord_cartesian(xlim = c(0, 0.05))

enter image description here

更常见的xlim()在这里不起作用,因为它将排除绘图窗口之外的点,导致多边形的绘制失败。