Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このような累積ヒストグラムを取得するにはどうすればよいですか
x <- runif(100,0,10) h <- hist(x) h[["counts"]] <- cumsum(h[["counts"]]) plot(h)
ggplot2で?
こんなポリゴンも描きたい
lines(h[["breaks"]],c(0,h[["counts"]]))