Hi everyone, I have a question concerning the coloring of polygons:
How can I color polygons (in this case a map with all the world's countries) by population/normalized levels using RGBColor[{x,0,0}]?
This is my code so far (and yes, I'm aware it's pretty bare bones and probably bad too):
Graphics[{
EdgeForm[White],
Black,
Table[
CountryData[countrie[i][/i]s[], {"SchematicPolygon", "Mercator"}],
{i, 1, Length[countries]}
]
}, ImageSize -> 800]
I already have a list of normalized population values (China being 1, India 0.896849 etc.), but I don't know how to properly implement that in the aforementioned RGBColor[].