Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Plotting data on a geographic map

    Dear All,
    I am trying to plot data on a Map of Nigeria (showing states, their city data was generated, and the geopolitical zone of the country the state belongs (such maps exist already)
    It is the data of prevalences of a disease, but I need to show the states/cities/geopolitical zones where the prevalence of that disease was determined.
    I will appreciate guidance

    The data showing the states/city and the geopolitical zone is shown below

    Code:
    * Example generated by -dataex-. To install: ssc install dataex
    clear
    input str7 State str17 City str13 geopoliticalzone
    "Kogi"    "Anyigba"       "North Central"
    "Oyo"     "Ibadan"        "South West"  
    "Kwara"   "Ilorin"        "South West"  
    "Kogi"    "Lokoja"        "North Central"
    "Rivers"  "Port Harcourt" "South South"  
    "Zaria "  "Kaduna "       "North West"  
    "Oyo"     "Ibadan"        "South West"  
    "Rivers"  "Port Harcourt" "South South"  
    "Borno"   "Maiduguri"     "North East"  
    "Kwara"   "Ilorin"        "South West"  
    "Kwara"   "Ilorin"        "South West"  
    "Oyo"     "Ibadan"        "South West"  
    "Edo "    "Benin"         "South South"  
    "Benue"   "Makurdi"       "North Central"
    "Kwara"   "Ilorin"        "North Central"
    "Niger"   "Minna"         "North Central"
    "Ekiti"   "Ido Ekiti"     "South West"  
    "Osun"    "Oshogbo"       "South West"  
    "Kaduna"  "Kaduna"        "North West"  
    "Kaduna " "Kaduna "       "North East"  
    "Kaduna " "Kaduna "       "North East"  
    "Kano"    "Kano"          "North West"  
    "Kaduna " "Zaria"         "North West"  
    "Borno"   "Maiduguri"     "North East"  
    "Ebonyi"  "Abakaliki"     "South East"  
    "Edo "    "Benin"         "South South"  
    "Abia"    "Umuahia"       "South East"  
    "Kwara"   "Ilorin"        "North Central"
    "Plateau" "Jos"           "North Central"
    "Adamawa" "Yola"          "North East"  
    "Kaduna"  "Zaria"         "North West"  
    end
    Thank you
    Ezeanosike Obum
Working...
X