2009-12-21 7 views

Répondre

8

Je ne suis pas vraiment sûr si c'est ce que vous recherchez:

library("ggplot2") 
tmp <- data.frame(x=-5:5, y=rnorm(11), lab=LETTERS[1:11]) 
p <- ggplot(aes(x=x, y=y, label=lab), data=tmp) + 
    geom_point() + 
    geom_text(data=subset(tmp, x > 0), hjust=-0.5) + 
    geom_text(data=subset(tmp, x <= 0), hjust=1.5) 
print(p) 

geom_text labeling http://img8.imageshack.us/img8/1056/geomtext.png

+0

C'est exactement ce que je cherche. Merci! –