Как построить один график с линиями ecdf_Q2 <- 50,40,30,20 и 10 вместо 50 ?? Мне нужно, чтобы ggplots перекрывали друг друга. Спасибо! </p>
ecdf_Q2 <- **50** %>%
ecdf.shift(ratio_threshold, .) %>%
filter(nobs > 20) %>%
ggplot(aes( x = OUR_ratio_cutoff, y = prob)) +
geom_line() +
geom_point() +
theme_bw(base_size = 12) +
theme(panel.grid = element_blank()) +
scale_y_continuous(limits = c(0,100),
breaks = seq(0,300, by = 10),
expand = c(0,0)) +
scale_x_continuous(limits = c(0,2),
breaks = seq(0,3, by = 0.1),
expand = c(0,0))