web-dev-qa-db-ja.com

バープロットの凡例領域のサイズを縮小

このプロットの凡例のサイズを小さくすることはできません。誰かが私を助けてくれますか?私はそれを真っ直ぐに見せたいが、プロットエリアの高さの20%以下にしたい

a <- c(3, 2, 2, 2, 1, 2 )
barplot(a, beside = T,
col = 1:6, space = c(0, 2))
legend("topright", legend = c("a", "b", "c", "d", "e", "f"), fill = 1:6, ncol = 2)
18
Sergio.pv

cexパラメーターがそれを行います。

a <- c(3, 2, 2, 2, 1, 2 )
barplot(a, beside = T,
        col = 1:6, space = c(0, 2))
legend("topright", 
       legend = c("a", "b", "c", "d", "e", "f"), 
       fill = 1:6, ncol = 2,
       cex = 0.75)

The plot

36