Re: [R] improve my ggplot look

2015-11-24 Thread Alaios via R-help
I am giving to the community two examples My code currently look like: breaks<-c(0,0.01,0.05,0.08,0.1,0.15,0.2,0.3,0.5,0.7,0.9,1) ggmap(mp, darken = 0) + geom_point(aes(Longitude, Latitude, colour =Divergence), data = PlotPoints, size =10)+ scale_colour_gradientn(colours=rainbow(9),breaks=breaks)

Re: [R] improve my ggplot look

2015-11-24 Thread Alaios via R-help
Dear Dennis, it would be better if not plotting the lon and lat. Keeping it blank is better for the aesthetics of my map. I am not sure how I can give a reproducible example herebut I want to   ggmap(mp, darken = 0) + geom_point(aes(Longitude, Latitude, colour=Divergence), data = PlotPoints, s

[R] improve my ggplot look

2015-11-19 Thread Alaios via R-help
Dear all,the following line of code print me a map of an area with the points I need. I only new two minor adjustments     ggmap(mp, darken = 0) + geom_point(aes(Longitude, Latitude, colour =Error), data = PlotPoints, size = 6)+ scale_colour_gradient2(low=muted("red"),mid="green", high=muted("bl