Plotting CCDF of walking durationsによると、次のように ccdf プロットを生成しました。
ccdf<-function(views,density=FALSE)
{
freq = table(views)
X = rev(as.numeric(names(freq)))
Y =cumsum(rev(as.list(freq)));
data.frame(x=X,count=Y)
}
library(ggplot2)
qplot(x,count,data=ccdf(views),log='xy')
Y 軸 = x 値のカウントですが、Y = P[X >= x] を取得したいのですが、どうすればそれを行うことができますか?