stat_ecdf(mapping = NULL, data = NULL, geom = "step", position = "identity", n = NULL, ...)
aes or aes_string. Only
needs to be set at the layer level if you are overriding
the plot defaults.layer. This can include aesthetics whose
values you want to set, not map. See layer
for more details.a data.frame with additional columns: xx in data ycumulative density corresponding x
Empirical Cumulative Density Function
df <- data.frame(x = c(rnorm(100, 0, 3), rnorm(100, 0, 10)), g = gl(2, 100)) ggplot(df, aes(x, colour = g)) + stat_ecdf()