मैं चाहता हूं (ऐसा करने के लिए सुझाव मिला) बॉक्सप्लॉट को अलग-अलग रूप और अतिरिक्त लेबल के साथ बनाएं। अपेक्षित (पूर्ण नहीं) आउटपुट निम्न जैसा दिखाई देगा (प्रत्येक बॉक्स में क्वाटाइल लेबल हैं) और नमूना आकार।बॉक्सप्लॉट के बदलते लेआउट और इसमें लेबल जोड़ने
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