1
我使用下面的代碼展示了一些測試,他們的估計和他們的CI呈現errorbar的估計:迴避geom_point在ggplots爲
ssi.oe.cutoffs.chart <- ggplot(data=oe.chart.data, aes(x=core_ot_code_mod, colour=cutoff))
ssi.oe.cutoffs.chart <- ssi.oe.cutoffs.chart + geom_hline(yintercept=1)
ssi.oe.cutoffs.chart <- ssi.oe.cutoffs.chart + geom_errorbar(aes(ymin=lcl95, ymax=ucl95, width=0.5),position="dodge")
ssi.oe.cutoffs.chart <- ssi.oe.cutoffs.chart + geom_errorbar(aes(ymin=SIR, ymax=SIR, width=0.5),position="dodge")
core_ot_code_mod
是離散變量,geom_errorbar
作品完美的我,用不同的顏色顯示2閃避錯誤欄,但我不能使用類似的代碼讓geom_point
以相同的方式呈現。我正在使用另一個geom_errorbar
作爲替代品,這不是很好。
任何人都可以在這裏啓發我嗎?謝謝!