Re: [R] questions about boxplots

2005-09-27 Thread Peter Wolf
concerning question 1: -- labeling of outliers -- you can get the outliers by boxplot(...)$out try: set.seed(17) x-rexp(99) names(x)-paste(x,1:99) out-boxplot(x)$out text(rep(1.1,length(out)), out, names(out)) Peter Wolf Stephen D. Weigand wrote: Dear Yulei, On Sep 26, 2005, at 6:56 PM,

[R] questions about boxplots

2005-09-26 Thread Yulei He
Hi, there. I have two questions about using R to create boxplots. 1. The function boxplot() plots the outliers. How can I label the exact values arount these outlier points? Does R have an option allow me to do that? 2. How can I put two boxplots in one x-y axis? Thanks. Yulei

Re: [R] questions about boxplots

2005-09-26 Thread Stephen D. Weigand
Dear Yulei, On Sep 26, 2005, at 6:56 PM, Yulei He wrote: Hi, there. I have two questions about using R to create boxplots. 1. The function boxplot() plots the outliers. How can I label the exact values arount these outlier points? Does R have an option allow me to do that? You can use