数据集可在 https://datahub.io/JohnSnowLabs/population-figures-by-country 下载

#coding=utf-8
import json
from country_codes import get_country_code
import pygal.maps.world
from pygal.style import RotateStyle as RS, LightColorizedStyle as LCS # 将数据加载到列表中
filename = 'population_data.json'
with open(filename) as f:
pop_data = json.load(f) # 创建一个包含人口数量的字典
cc_populations = {}
for pop_dict in pop_data:
country_name = pop_dict['Country_Name']
population = pop_dict['Population_in_2016']
code = get_country_code(country_name)
if code:
cc_populations[code] = population # 根据人口数量将国家分成4组
cc_pop_1, cc_pop_2, cc_pop_3, cc_pop_4 = {}, {}, {}, {}
for cc, pop in cc_populations.items():
if pop < 10000000:
cc_pop_1[cc] = pop
elif pop < 100000000:
cc_pop_2[cc] = pop
elif pop < 1000000000:
cc_pop_3[cc] = pop
else:
cc_pop_4[cc] = pop # wm_style = RS('#336699', base_style=LCS)
wm = pygal.maps.world.World()
wm.title = 'World Population in 2016, by Country'
wm.add(u'0-1千万', cc_pop_1)
wm.add(u'1千万-1亿', cc_pop_2)
wm.add(u'1亿-10亿', cc_pop_3)
wm.add(u'>10亿', cc_pop_4) wm.render_to_file('world_population.svg')
from pygal_maps_world.i18n import COUNTRIES

def get_country_code(country_name):
for code, name in COUNTRIES.items():
if name == country_name:
return code
return None

最新文章

  1. Binary Tree Postorder Traversal
  2. 关于API的设计与实现
  3. GIT 在本地保存账户和密码
  4. #pragma weak
  5. bzoj3208:花神的秒题计划I
  6. centos7安装codeblocks教程
  7. 第四章:Django 的模板系统(转)
  8. 初识SilkTest
  9. 在Ubuntu下搭建FTP服务器的方法
  10. Android 事件统计
  11. UWP中使用Telerik UI For UWP
  12. 自己收集的工作js库---2018-02-07
  13. Android之微信朋友圈UI实现--ExpandableListView+GridView
  14. 基于vue现有项目的服务器端渲染SSR改造
  15. 1019. General Palindromic Number (20)
  16. BZOJ1430小猴打架——prufer序列
  17. Kafka技术内幕 读书笔记之(六) 存储层——日志的读写
  18. tomcat下面web应用发布路径配置 ( 即虚拟目录配置 )
  19. 朴素贝叶斯分类器及Python实现
  20. css3凹角效果

热门文章

  1. nutch 抓取需要登录的网页
  2. .net反射详解 原文://http://blog.csdn.net/wenyan07/article/details/27882363
  3. gvim 编辑器配置
  4. 0822JDBC--Java连接数据库
  5. es6 Object的几个新方法
  6. python中join函数的用法
  7. POJ 3657 Haybale Guessing(区间染色 并查集)
  8. [CF600E]Dsu on tree
  9. JZYZOJ1349 SPOJ839 星屑幻想 xor 网络流 最大流
  10. 全网第二好懂的FFT(快速傅里叶变换)