ggplot2 パッケージのstat_ecdf()機能部分が気に入っています。これは、データ シリーズを調べるのに非常に役立ちます。ただし、これは視覚的なものにすぎません。関連するテーブルを取得する方法はありますか?
次の再現可能な例を見てください
p <- ggplot(iris, aes_string(x = "Sepal.Length")) + stat_ecdf() # building of the cumulated chart
p
attributes(p) # chart attributes
p$data # data is iris dataset, not the serie used for displaying the chart