You could add an arrow at the bottom of the plot,
library(ggplot2)
p <- qplot(1,1)
p + theme_bw() +
annotate("segment", x=-Inf,xend=Inf,y=-Inf,yend=-Inf,arrow=arrow())
However there's a problem of clipping to the plotting region. I guess
it should be possible to navigate to this viewport and change the
clipping to FALSE but I forget how.
HTH a little,
baptiste
> --
> You received this message because you are subscribed to the ggplot2 mailing list.
> Please provide a reproducible example: http://gist.github.com/270442
>
> To post: email ggp...@googlegroups.com
> To unsubscribe: email ggplot2+u...@googlegroups.com
> More options: http://groups.google.com/group/ggplot2
>