パッケージを使用していますvioplot
。どうすれば異なる色のバイオリン図を作成できますか?
これは私の再現可能な例です:
# Violin Plots library(vioplot)
x1 <- mtcars$mpg[mtcars$cyl==4]
x2 <- mtcars$mpg[mtcars$cyl==6]
x3 <- mtcars$mpg[mtcars$cyl==8]
vioplot(x1, x2, x3,
names=c("4 cyl", "6 cyl", "8 cyl"), col="gold")
title("Violin Plots of Miles Per Gallon")
ありがとうございました。