[R] A GGPLOT ploting question

baptiste auguie baptiste.auguie at googlemail.com
Mon Dec 7 11:51:09 CET 2009


Hi,

I think you have two options:

1- use a specific formatter in scale_x_continuous, e.g.

last_plot +
scale_x_continuous(formatter="percent")

2- specify breaks and labels,

last_plot +
scale_x_continuous(breaks=c(2,6), labels=paste(c(2,6),"%"))


HTH,

baptiste

2009/12/7 Megh <megh700004 at yahoo.com>:
>
> library(ggplot2)
> m <- ggplot(movies, aes(x=rating))
> m + geom_histogram()
>
> Now in x-axis instead of numbers like 2,4,6,8,10..., I want to write like
> 2%,4%,6%,8%,10%...
>
> Is there any way to do that through GGPLOT ? Your help will be highly
> appreciated.
>
> Thanks,
> --
> View this message in context: http://n4.nabble.com/A-GGPLOT-ploting-question-tp954281p954281.html
> Sent from the R help mailing list archive at Nabble.com.
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>




More information about the R-help mailing list