【发布时间】:2013-10-20 06:23:12
【问题描述】:
我想为下图中的颜色编码方案添加另一个复杂程度。我想说明绘制的每个值是否都通过了统计测试。因此,如果通过测试,这些点只会根据百分位数进行颜色编码,否则,我希望点是灰色的。
这是我的代码,因为我从第一篇帖子 Color code points based on percentile in ggplot 收到了所有有用的建议(注意:这是一些虚构的数据,尽管我有更多条目的真实数据:
dat <- data.frame(key = c("a1-a3", "a1-a2"), position = 1:100, fst = rlnorm(200, 0, 1), fet = rnorm(200, 0.24, 0.54))
#Get quantiles
quants <- quantile(dat$fst, c(0.95, 0.99))
dat$quant <- with(dat, factor(ifelse(fst < quants[1], 0,
ifelse(fst < quants[2], 1, 2))))
dat$fisher <- with(dat, factor(ifelse(fet > 1.30102999566398, 0, 1)))
dat$col <- with(dat, factor(ifelse(fet < 1.30102999566398, 3, quant)))
########theme set
theme_set(theme_bw(base_size = 10))
p1 <- ggplot(dat, aes(x=position, y=fst)) +
geom_point(aes(colour = col, size=0.2)) +
facet_wrap(~key, nrow = 1) +
scale_colour_manual(values = c("black", "blue", "red", "grey"), labels = c("0-95", "95-99", "99-100", "fail")) +
ylab(expression(F[ST])) +
xlab("Genomic Position (Mb)") +
scale_x_continuous(breaks=c(0, 1e+06, 2e+06, 3e+06, 4e+06), labels=c("0", "1", "2", "3", "4")) +
scale_y_continuous(limits=c(0,1)) +
theme(plot.background = element_blank(),
panel.background = element_blank(),
panel.border = element_blank(),
legend.position="none",
legend.title = element_blank()
)
tiff(Fstvalues_colourcode3.tiff", height=2.5, width=6.5, units="in", res = 300, pointsize="10")
p1
dev.off()
我的问题在于:dat$col
【问题讨论】:
标签: r colors ggplot2 percentile