具有对数X轴的温度

时间:2016-04-11 23:43:54

标签: r scatter-plot beeswarm

我试图绘制一个“beeswarm”,它本质上是一个单维的散点图

library(beeswarm)
data(breast)
beeswarm(breast$time_survival,horizontal=TRUE)

我想要实现的是X轴的对数变换。

显然,我可以做beeswarm(log(breast$time_survival),horizontal=TRUE,method="hex"),但它会绘制对数转换的数据,X轴不再以数字方式重复生存时间。有没有办法直接影响X轴?在常规散点图中,我会plot(breast$time_survival,log="x")但不确定如何使用beeswarm

1 个答案:

答案 0 :(得分:1)

beeswarm的

选项是log = TRUE,而不是log =“x”

library(beeswarm)
data(breast)
beeswarm(breast$time_survival,horizontal=TRUE, log=T)

enter image description here