Could someone show me how to get a blue line in this plot?> ggplot(movies, aes(x=rating)) + stat_qq(geom="line",quantiles=seq(0,1,0.005), distribution=qunif) I've tried many permutations but cannot seem to find the right combination. I've tried these flavors:> ggplot(movies, aes(x=rating)) + stat_qq(geom="line", colour="blue",quantiles=seq(0,1,0.005), distribution=qunif)> ggplot(movies, aes(x=rating)) + layer(geom="line", colour="blue",stat="qq", distribution=qunif, quantiles=seq(0,1,0.005)) I also tried to use grid.gedit but could not figure out the appropriate gpath to use. Thanks, Pete
On 7/14/07, Pete Kazmier <pete-expires-20070910 at kazmier.com> wrote:> Could someone show me how to get a blue line in this plot? > > > ggplot(movies, aes(x=rating)) + stat_qq(geom="line", > quantiles=seq(0,1,0.005), distribution=qunif)It's a bug in ggplot, sorry. It will be fixed in the next version. Hadley
Possibly Parallel Threads
- How to generate 'minor' ticks in lattice (qqmath)
- ggplot2 / histogram / y-axis
- Latin Hypercube Sample and transformation to uniformly distributed integers or classes
- how to make this qq plot in lattice and/or ggplot2
- It seams that fast99 function (sensitivity package) does not work out for norm distribution.