Skip to content
Back to formatted view

Raw Message

Message-ID: <429B15FF.7060203@fz-rossendorf.de>
Date: 2005-05-30T13:32:47Z
From: Joerg van den Hoff
Subject: values of bars in barplot
In-Reply-To: <20050530131928.27384.qmail@web25809.mail.ukl.yahoo.com>

luc tardieu wrote:
> Hi, 
> 
> I couldn't find how to have the values written on the
> top of each bar in a barplot. When using hist(), it is
> possible to use labels=T, but this option does not
> seem to exist for barplot().
> 
> Is there a trick I could use to do that ?
> 
> Thanks to all
> 
> Luc
> 
> ______________________________________________
> 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
> 

something like:


x <- 1:3
#ensure some free space above the bar and remember midpoints:
bmp <- barplot(x, ylim = c(0, 1.1*max(x)))

text(bmp, x + .03*max(x), x)


should do.