Rでミーン・メジアン・モードをグラフで表すテンプレート
tags: rBasicLearning
1. テンプレート
ミーンは赤・メジアンは青・モードは黄色で表してます
RVgraph <- function(a){
h1 <- hist(a,
breaks = max(a)-1)
segments(mean(a), 0, mean(a), max(h1$counts), col = "red", lwd = 2)
segments(median(a), 0, median(a), max(h1$counts), col = "blue", lwd = 2)
segments(which.max(h1$counts), 0, which.max(h1$counts), max(h1$counts), col = "yellow", lwd = 2)
}
2. 具体例
使うデータ
data <- c(1, 1, 1, 1, 2, 3, 4, 5, 16, 20)
出力
RVgraph(data)
Author And Source
この問題について(Rでミーン・メジアン・モードをグラフで表すテンプレート), 我々は、より多くの情報をここで見つけました https://qiita.com/Quantas/items/6ad26aac5daf556eb25c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .