[R] How to add a line on the boxplot

Uwe Ligges ligges at statistik.uni-dortmund.de
Sat Jul 22 11:59:15 CEST 2006


Jiantao Shi wrote:

> Hi,
> I have a data frame,
> 
> 
>>df=rnorm(1000)
>>dim(df)=c(100,10)
>>
> 
> And i can get the boxplot,
> 
> 
>>boxplot(data.frame(df))
> 
> 
> 
> So how can add a line (aline) on the existing boxplot,eg,
> 
> 
> Thanks in advance.

Example:


df <- rnorm(1000)
dim(df) <- c(100,10)
boxplot(data.frame(df))
aline <- apply(df, 2, max)

# , now you might want either
abline(h = aline, col = "green", lty="dotted")
# or
segments(seq(along = aline) - 0.2, aline,
          seq(along = aline) + 0.2, aline,
          lwd = 2, col = "red")



Uwe Ligges




> 	[[alternative HTML version deleted]]
> 
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.



More information about the R-help mailing list