I am using R 3.4.3, and plotting the following function:
x = rnorm(5000,20,30)
cdf_1 <- ecdf(x)
plot(cdf_1, xlabs="x0",
ylabs="y0")
This gives me the following plot:
Now, the plot doesn't take the given labels x0 and y0. How to solve this?
Also, how do I get the value of x for y=0.95. I have tried using label names, but it throws error. Kindly suggest.