gambia {geoR} | R Documentation |
Malaria prevalence in children recorded at villages in The Gambia, Africa.
data(gambia)
Two objects are made available:
gambia
gambia.borders
Thomson, M., Connor, S., D Alessandro, U., Rowlingson, B., Diggle, P., Cresswell, M. & Greenwood, B. (1999). Predicting malaria infection in Gambian children from satellite data and bednet use surveys: the importance of spatial correlation in the interpretation of results. American Journal of Tropical Medicine and Hygiene 61: 2–8.
Diggle, P., Moyeed, R., Rowlingson, B. & Thomson, M. (2002). Childhood malaria in The Gambia: a case-study in model-based geostatistics, Applied Statistics.
plot(gambia.borders, type="l", asp=1) points(gambia[,1:2], pch=19) # a built-in function for a zoomed map gambia.map() # Building a "village-level" data frame ind <- paste("x",gambia[,1], "y", gambia[,2], sep="") village <- gambia[!duplicated(ind),c(1:2,7:8)] village$prev <- as.vector(tapply(gambia$pos, ind, mean)) plot(village$green, village$prev)