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.
こんにちは私はRで箱ひげ図をプロットする必要があります。2つの行列aとbがあります。の箱ひげ図を作成しましたが、の同じプロットにa箱ひげ図を作成したいと思います。マトリックスの箱ひげ図は、の箱ひげ図のひげの上にある必要があります。baba
a
b
Rでそれを行う方法はありますか?
箱ひげ図を既存のプロットに追加するには、引数add=TRUEを使用します。つまり、次のようになります。
add=TRUE
##Some data a = rnorm(20) b = rnorm(20, 2, 0.3) ##The plots boxplot(a) boxplot(b, add=TRUE, col=2)