web-dev-qa-db-ja.com

Rの2つの変数のヒストグラム

以下のようなヒストグラムで比較したい2つの変数があります。ヒストグラムの各ビンについて、両方の変数の頻度が表示され、それらを簡単に比較できます。

enter image description here

11
alex

addパラメータをhistに使用できます(?hist?plot.histogramを参照):

hist(rnorm(1000, mean=0.2, sd=0.1), col='blue', xlim=c(0, 1))
hist(rnorm(1000, mean=0.8, sd=0.1), col='red', add=T)

enter image description here

addパラメータについて調べるために、?hist...引数は、これらがplot.histogramに渡される引数であることを示し、addが文書化されていることに気付きました?plot.histogram。または、?histの下部にある例の1つでaddパラメータを使用しています。

14

prop.tablebarplotはこのようになります

somkes <- sample(c('Y','N'),10,replace=T)
amount <- sample (c(1,2,3),10,replace=T)
barplot(prop.table(table(somkes,amount)),beside=T)

enter image description here

5
agstudy