棒グラフ

棒グラフを描く

barplot(height, ...)

棒グラフを描くbarplot()関数にデータを渡す。

data <- c(10, 20, 30, 40, 50)
barplot(data)

barplot sample 1

凡例をつける

凡例(レジェンド)をつけるには、legend()関数を使用する。

barplot(c(10, 20, 30, 40, 50))
legend("topleft", legend="Sample")

barplot sample 2

凡例の位置を指定する

凡例の位置は、以下のキーワードで指定できる。

"bottomright"
"bottom"
"bottomleft"
"left"
"topleft"
"top"
"topright"
"right"
"center"

それぞれ以下のような位置に表示される。

barplot(c(10, 20, 30, 40, 50))
location <- c("bottomright", "bottom", "bottomleft", "left", "topleft", "top", "topright", "right", "center")
for (i in 1:9) {
legend(location[i], legend = location[i])
}

barplot sample 3

See Also

散布図

2変数を縦軸と横軸に点でプロットする

beeswarm

蜂群図を描くためのパッケージ。

ape

系統樹を編集するためのパッケージ

ベクトルの集合演算

ベクトルの和集合・積集合・差集合・相当な集合

RStudio

Rのための統合開発環境

線形回帰

説明変数Xに基づいて目的変数Yをモデル化する

radian

モダンなRコンソール

dnorm()の使い方

正規分布の確率密度を算出する関数