search for: allworld

Displaying 1 result from an estimated 1 matches for "allworld".

Did you mean: alworld
2012 Feb 01
3
Plotting bar graph over a geographical map
...ps libraries. The points are added with the function geom_point. I know that there is a function geom_bar but I can't figure out how to use it. Thank you for your help, Simon ### R-code library(ggplot2) library(maps) measurements <- read.csv("all_podo.count.csv", header=T) allworld <- map_data("world") pdf("map.pdf") ggplot(measurements, aes(long, lat)) + geom_polygon(data = allworld, aes(x = long, y = lat, group = group), colour = "grey70", fill = "grey70") + geom_point(aes(size = ref)) + opts(axis.title.x = theme_blank(), a...