I'm plotting the following data:
UKPRN Subject Total.number easting northing
1 10033225 Computing NA 516857 209364
2 10035012 Computing NA 337767 402199
3 10000571 Computing NA 369406 163887
4 10034119 Computing NA 567497 193951
5 10007140 Computing 7 407643 287149
6 10007140 Computing 5 407643 287149
I want to keep the NA data on the map, placing it as a cross, whilst plotting the numbered values as circles with a size. I use:
ggplot(map_data, aes(easting, northing, size = Total.number)) +
geom_point(alpha = 2/3)
But the NA values aren't mapped. Any idea how I do this?
Warning message:
Removed 66 rows containing missing values (geom_point).