The following code produces a heatmap but shows labels on the y axis for all 194 countries included in the original dataset (before sampling). This continues to happen even if I remove the original dataset. I've also tried shutting down the console to start a new session, to no avail.

qlife.s <- myData[sample(194,size=10,replace=F),]

qlife.s.m <- melt(qlife.s)

qlife.s.m <- ddply(qlife.s.m, .(variable), transform, rescale=rescale(value))

(p <- ggplot(qlife.s.m, aes(variable, qlife.s.m$Country))
      + geom_tile( aes(fill = rescale),
                   colour = "white")
      + scale_fill_gradient(low = "red", high = "green")
)

Any advice is much appreciated. Thanks in advance.

link|improve this question
1  
?droplevels seems like a good idea. – Ben Bolker Nov 9 '11 at 21:52
This has been discussed many times on this site, e.g.: stackoverflow.com/q/1195826/429846 or see several other questions all using the droplevels() function stackoverflow.com/search?q=%5Br%5D+droplevels – Gavin Simpson Nov 9 '11 at 21:56
1  
Does this qualify for an r-faq tag? – Ben Bolker Nov 9 '11 at 22:22
feedback

1 Answer

Use droplevels() on your data. By the looks of things:

qlife.s.m <- droplevels(qlife.s.m)

should do what you want, but it is difficult to tell without a reproducible example.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.