I have a Normal distribution CCDF plot made in R. I need to apply Markov inequality to this data and plot them at this same plot. How can I implement it? Any help is welcome.
My data and what I have:
n01 <- rnorm(1000, mean = 27947623, sd = 575.839)
ecdf_n01 <- ecdf(n01)
ccdf <- data.frame(x = sort(n01),
y = 1-ecdf_n01(sort(n01)))
plot(ccdf)
The Markov inequality formula:
[≥]≤[]/