나는 다음을 계획한다.
library(ggplot2)
carrots <- data.frame(length = rnorm(500000, 10000, 10000))
cukes <- data.frame(length = rnorm(50000, 10000, 20000))
carrots$veg <- 'carrot'
cukes$veg <- 'cuke'
vegLengths <- rbind(carrots, cukes)
ggplot(vegLengths, aes(length, fill = veg)) +
geom_density(alpha = 0.2)
이제 전체 범위 대신 x=-5000
~ 사이의 영역 만 플롯하고 싶다고 가정 해보십시오 5000
.
어떻게해야합니까?
library(scales); ... + scale_x_continuous(limits = c(-5000, 5000), oob=squish)
(기본값은oob=censor
); 참조?squish
,?censor
: groups.google.com/forum/#!topic/ggplot2/AsJ6xpmR9tU