Countries in the World with GDP per capita less than Cuba.

As they said a picture is worth a thousand words.

The following map was produce unsing mathematica and the statistical information within mathematica.

The question I asked mathematica is

Color all the countries with GDP per capita smaller than Cuba’s GDP percapita.

We can then see large parts of the world like in Africa and Asia these are the poorest countries is interesting to notice that India and China are included but the reason for that is because these countries are very heavily populated so that will bring down the GDP per capita.

worldcubagdppercapita

The Mathematica code I use to produce the map above is

 

Graphics[

 {{EdgeForm[Black], White,

   CountryData[#, "FullPolygon"] & /@ CountryData[]},

  Tooltip[{EdgeForm[Black], Hue[CountryData[#, "GDPPerCapita"]],

      CountryData[#, "FullPolygon"]}, #] & /@

   Select[CountryData[], 

    CountryData[#, "GDPPerCapita"] < 

      CountryData["Cuba", "GDPPerCapita"] &]}]

Advertisement

Leave a Comment

Filed under cuba

Leave a Reply

Fill in your details below or click an icon to log in:

Gravatar
WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s