I am trying to produce a world map with countries grouped into 3 categories. I can get the following command to draw a perfect map, which includes all countries. However, when I add any attribute, the resulting map drops about a dozen countries. Why?
This code works fine:
spmap using global_coord , id(id)
I start loosing countries with either of these codes:
spmap type using global_coord, id(id) fcolor(Blues) ndfcolor(red) clmethod(unique)
spmap type using global_coord , id(id) fcolor(Blues2) ocolor(BuRd)
Every country has complete data available for the variables involved, so why is spmap dropping countries when I include an attribute?
Thanks!
This code works fine:
spmap using global_coord , id(id)
I start loosing countries with either of these codes:
spmap type using global_coord, id(id) fcolor(Blues) ndfcolor(red) clmethod(unique)
spmap type using global_coord , id(id) fcolor(Blues2) ocolor(BuRd)
Every country has complete data available for the variables involved, so why is spmap dropping countries when I include an attribute?
Thanks!
Comment