2013-04-02 51 views

回答

10

下面是一個例子,而不rworldmap:

require(mapdata) 

# get the names 
cc <- map('world', names = TRUE, plot = FALSE) 
take <- unlist(sapply(c("ethiopia", "kenya", "uganda"), grep, tolower(cc), value = TRUE)) 

# world 
map() 
# add the selected countries in grey to the plot 
map('world', regions=take, fill=TRUE, col='grey50', add = TRUE) 

enter image description here

+2

+1,但我會用一個'BOR =「紅色」'或類似的,以突出選定的國家多一點。 –

+0

非常感謝西蒙。正是我想要的!完善! – Carvalho

相關問題