nigmastar
nigmastar

Reputation: 470

Missing colourbar in ggplot2

I've tried this example from here and it seems R is not showing the colourbar(?)

dsub <- subset(diamonds, x > 5 & x < 6 & y > 5 & y < 6)
dsub$diff <- with(dsub, sqrt(abs(x-y))* sign(x-y))
(d <- qplot(x, y, data=dsub, colour=diff))

that's my R session:

R version 3.0.1 (2013-05-16)
Platform: x86_64-w64-mingw32/x64 (64-bit)

enter image description here

Upvotes: 1

Views: 70

Answers (1)

harkmug
harkmug

Reputation: 2785

I was able to run the code and get the colourbar:

enter image description here

I am running an even older version of R:

> R.version
                   _                           
    platform       x86_64-w64-mingw32          
    version.string R version 3.0.0 (2013-04-03)
    nickname       Masked Marvel 

Maybe you need to update ggplot2

Upvotes: 2

Related Questions