I am new to r and have been trying for hours to plot points of a family of butterflies on a map of arizona. I could be doing totally wrong or have something missing im not sure and any help would be greatly appreciated!
I have the following codes now and have tried many others:
rio = read.csv("Rioninidae_Cleaned.csv",stringsAsFactors = FALSE)
arizona <- get_googlemap(center=c(lon=-110.713,lat=31.815), zoom = 3)
lon <-data.frame(rio$latitude)
lat <-data.frame(rio$longitude)
df <- as.data.frame(cbind(lon,lat))
df
arizona <- get_googlemap(center = c(lon = -110.713,lat = 31.815), zoom = 3)
ggmap(arizona) +
geom_point(data = df, aes(x = lon, y = lat), size = 5, shape = 21) +
guides(fill = FALSE, alpha = FALSE, size = FALSE)
my csv file can be found at: https://www.dropbox.com/s/yxj1uvmt9bw8gvn/Rioninidae_Cleaned.csv?dl=0
genus province county latitude longitude
1 Apodemia Arizona Apache 33.90011 -109.5844
2 Apodemia Arizona Cochise County 31.46260 -110.2895
3 Apodemia Arizona Cochise County 31.46260 -110.2895
4 Apodemia Arizona Santa Cruz 31.50503 -110.6547
5 Emesis Arizona Santa Cruz 31.74001 -110.9411
6 Emesis Arizona Santa Cruz 31.74001 -110.9411
7 Emesis Arizona Santa Cruz 31.38333 -111.0833
8 Apodemia Arizona Santa Cruz 31.38333 -111.0833
9 Calephelis Arizona Pima 31.76667 -111.5500
Thank you!