我正在研究一些密度图,其中填充以值(0.05)为条件
library(plyr)
library(ggplot2)
allNorm<-data.frame(value=rnorm(300),
aCategory=rep(1:3, c(100, 100, 100)))
allNorm<-ddply(allNorm, .(aCategory), mutate,
shapWilkP=shapiro.test(value)$p.value)
mixed<-data.frame(value=c(rlnorm(200), rnorm(100)),
aCategory=rep(1:3, c(100, 100, 100)))
mixed<-ddply(mixed, .(aCategory), mutate,
shapWilkP=shapiro.test(value)$p.value)
ggplot(allNorm, (aes(x=value)))+
geom_density(aes(fill=shapWilkP>0.05))+
facet_wrap(~aCategory)
ggplot(mixed, (aes(x=value)))+
geom_density(aes(fill=shapWilkP>0.05))+
facet_wrap(~aCategory)
这有效(几乎) - 我只需要弄清楚如何强制 TRUE 一直是蓝色的。
有人可以帮忙吗?
谢谢