Я закладаю наступне:
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