8
異なる外観のラベルを追加してboxplotを作成したいと思います。期待される(完全ではない)出力は次のようになります(すべてのボックスには四角いラベルがあります)とサンプルサイズ。boxplotのレイアウトを変更してラベルを追加する
boxplot(len~supp*dose, data=ToothGrowth, notch=TRUE,
col=(c("gold","darkgreen")),
main="Tooth Growth", xlab="Suppliment and Dose", names = supp)
# some unsuccessful trials
# to add names
boxplot(len~supp*dose, data=ToothGrowth, notch=TRUE,
col=(c("gold","darkgreen")),
main="Tooth Growth", xlab="Suppliment and Dose", names = supp*dose)
# to remove the plot outline
boxplot(len~supp*dose, data=ToothGrowth, notch=TRUE,
col=(c("gold","darkgreen")),
main="Tooth Growth", xlab="Suppliment and Dose", bty="n")
おかげで、私は私があなたのメッセージを渡すことがしたい - (!オーダー)いつか私は、このような提案を得る、私は従う必要があります! – shNIL