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.
箱ひげ図全体ではなく、箱ひげ図の中央線のみに色を付ける方法はありますか?
私がこれを試すとき:
boxplot(matrix,col="red")
その後、ボックス全体が赤色になります。箱ひげ図の中央線のみに色を付けたい。
Rでそれを行う方法はありますか?
medcolのようにしてみてください
medcol
boxplot(matrix(rnorm(100), ncol=2), medcol="red")