Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm relatively new to ggplot2, and I'm having trouble adding appropriate labels to my contours. I would love to be able to add the labels without the directlabels package, but I haven't found a way to, so if you know of a way to customize labels without directlabels, I would love to here it.

Using the classic volcano example, I can add labels to the default contour plot using the directlabels packet in the following way:

library(plyr)
library(ggplot2)
library(directlabels)
library(reshape)
volcano<-melt(volcano)
v<-ggplot(volcano, aes(x,y,z=z))
e<-v + stat_contour(aes(colour=..level..))
direct.label(e)

In the above example, the labels are added appropriately, but things become more complicated if I try to specify my own break points for the contours:

e<-v + stat_contour(aes(breaks=c(160, 170, 180), colour=..level..))
direct.label(e)

Now, the contours are specified by the breaks I have provided, but labels still appear for all of the default contours. How do I only plot only labels for the graphed contours?

A related issue, how would I plot labels for contour levels not included in the default? Say a break of 165:

e<-v + stat_contour(aes(breaks=c(165), colour=..level..))
direct.label(e)

Thanks for any help!

share|improve this question
What version of ggplot2 are you using? – mnel May 24 '12 at 1:51
Also, the example you gave does not appear to work. The column names produced by melt are c(X1,X2,value) meaning that v <- ggplot(volcano, aes(x = X1, y= X2, z = value)) will work. – mnel May 24 '12 at 1:52
1  
@mnel and @BurtonGuster I just tried to run examples from ?direct.label using ggplot2 (0.9.1) and directlabel (2.5), and each time got an error message: "Error: ggplot2 doesn't know how to deal with data of class waiver". There could be a problem with the directlabels package - see here – Sandy Muspratt May 24 '12 at 4:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.