ฉันพล็อตต่อไปนี้:
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