Hi this is the last piece of my R script I have points on a map I would like to be able to change the points to different colours to reflect organisations and also add a legend to my map reflecting the different organisations
My data headers are
org code, organisation_name, long, lat
ggplot() +
geom_polygon(data = worldmap,
aes(x = long, y = lat,
group = group),
fill = 'gray90',
color = 'black') +
coord_fixed(ratio = 1.3,
xlim = c(-10,3),
ylim = c(50, 59)) +
theme_void() +
geom_point(data = Data, aes(x = long, y = lat))