process json in pygal

import json
from random_walk import get_country_code
from pygal.maps.world import World
from pygal.style import RotateStyle
from pygal.style import LightColorizedStyle
#from pygal.style import RotateStyle as RS,LightColorStyle as LCS

filename = 'population_data.json'
with open(filename) as f:
    pop_data = json.load(f)

cc_population={}

for pop_dict in pop_data:
    if pop_dict['Year'] == '2010':
        country_name = pop_dict['Country Name']
        population = int(float(pop_dict['Value']))
        code = get_country_code(country_name)
        if code:
            cc_population[code]=population

cc_1,cc_2,cc_3={},{},{}
for cc,pop in cc_population.items():
    if pop <10000000:
        cc_1[cc]=pop
    elif pop <1000000000:
        cc_2[cc]=pop
    else:
        cc_3[cc]=pop

print(len(cc_1),len(cc_2),len(cc_3))


#wm=World()

#set the basic color
#wm_style = RotateStyle('#336699')

#brighten the backgroudcolor
#wm_style = LightColorizedStyle

wm_style = RotateStyle('#336699',base_style=LightColorizedStyle)


wm=World(style=wm_style)

wm.title = "World population in 2010,by Country"
#wm.add('2010',cc_population)

#group the data
wm.add('0-10m',cc_1)
wm.add('10m-1bn',cc_2)
wm.add('>1bn',cc_3)

wm.render_to_file('World_population.svg')

这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值