Created
March 6, 2012 21:35
-
-
Save johnjosephhorton/1989087 to your computer and use it in GitHub Desktop.
Code for making a plot of contractor locations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(ggplot2) | |
library(sqldf) | |
# using the dataset 'raw' wich is a list of contractors by lat, long | |
df <- sqldf("SELECT COUNT(*) AS num, LocLat, LocLong | |
FROM raw GROUP BY LocLat, LocLong") | |
g <- qplot(LocLong,LocLat, colour=num, size=log(num), data = df) | |
png("india.png") | |
print(g) | |
dev.off() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment