日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

今天帶大家分析一下2020福布斯全球億萬富豪榜,看一下哪些國家有錢人最多、哪些行業比較產有錢人。

數據來源于福布斯富豪排行榜官網,網址為:

https://www.forbeschina.com/lists/1733

 

python分析全球億萬富翁排行榜,得出富豪最多的國家和行業

 

寫了個爬蟲小程序,把網頁數據存入表格,核心代碼如下:

items=soup.find_all('tr')
result=[]for item in items[:-1]:    result.Append([i.text for i in item.find_all('td')])with open('2020年福布斯排行榜.csv', 'a+', newline='')as f:
    f_csv = csv.writer(f)    f_csv.writerows(result)

 

python分析全球億萬富翁排行榜,得出富豪最多的國家和行業

 

一、福布斯排行榜各國家人數占比

福布斯排行榜億萬富翁總共有1990名,來自全球各國,現在我們先統計一下各國人數占比情況

1.數據處理代碼

import pandas as pd
data=pd.read_csv('2020年福布斯排行榜.csv',encoding='gbk')
list_country=list(set(list(data['國家和地區'])))  #去重
dict_country={}list_country_count=[list(data['國家和地區']).count(i) for i in list_country]
for i, j in zip(list_country, list_country_count):
    dict_country[i]=jtuple_country=sorted(dict_country.items(),key=lambda x:x[1],reverse=True) 

2.數據分析代碼

from pyecharts import options as opts
from pyecharts.charts import Pie
pie = (    Pie()   .add(        "",
        tuple_country[:20],
        radius=["30%", "75%"],
        rosetype="radius",
        label_opts=opts.LabelOpts(is_show=False),
    )    .set_global_opts(        title_opts=opts.TitleOpts(title="全球各國福布斯排行人數統計"),
        legend_opts=opts.LegendOpts(type_="scroll", pos_left="90%", orient="vertical"),
    )    .set_series_opts(label_opts=opts.LabelOpts(formatter="{b}: {c},ndvhtzp%"))
)pie.render_notebook()

 

python分析全球億萬富翁排行榜,得出富豪最多的國家和行業

 

人數最多的國家是美國,有614名,占比33.26%,其次是中國內地,有387名,占比20.96%,而印度和我國想比就相差甚遠,不算香港還將近是它的4倍

二、分析各國億萬富豪平均身價

接下來想分析一下,各國億萬富豪平均身價情況

1.數據分析代碼

import pandas as pd
data=pd.read_csv('2020年福布斯排行榜.csv',encoding='gbk')
#各國占比
list_country=list(set(list(data['國家和地區'])))  #去重
dict_country={}
list_country_count=[list(data['國家和地區']).count(i) for i in list_country]
for i, j in zip(list_country, list_country_count):
    dict_country[i]=j
tuple_country=sorted(dict_country.items(),key=lambda x:x[1],reverse=True) 
dict_money={}
for i,j in tuple_country:
    eve_money=round(sum(int(n) for n in list(data[data['國家和地區'].eq(i)]['財富(億美元)']))/j,2)
    dict_money[i]=eve_money
tuple_money=sorted(dict_money.items(),key=lambda x:x[1],reverse=True) 

2.數據處理代碼

from pyecharts import options as opts
from pyecharts.charts import Bar
from pyecharts.globals import ThemeType
l1=[i[0] for i in tuple_money]
l2=[i[1] for i in tuple_money]
bar = (    Bar({"theme": ThemeType.macARONS})
    .add_xaxis(l1)    .add_yaxis("", l2)
    .set_global_opts(title_opts=opts.TitleOpts(title="各國億萬富豪平均身價"),
                     datazoom_opts=opts.DataZoomOpts(type_="slider"),
                     yaxis_opts=opts.AxisOpts(name="億元"),
                     xaxis_opts=opts.AxisOpts(name="國家"))
)bar.render_notebook()

 

python分析全球億萬富翁排行榜,得出富豪最多的國家和行業

 

墨西哥的富豪平均身價最高,為85.83億美元,其次是比利時、法國、新西蘭、尼日利亞、丹麥、塞浦路斯、美國。

三、統計分析哪個行業億萬富豪最多

最后,讓我們來分析一下,看看哪些行業有錢人最多

1.數據處理

import pandas as pd
data=pd.read_csv('2020年福布斯排行榜.csv',encoding='gbk')
list_country=list(set(list(data['財富來源'])))  #去重
dict_country={}list_country_count=[list(data['財富來源']).count(i) for i in list_country]
for i, j in zip(list_country, list_country_count):
    dict_country[i]=jtuple_kind=sorted(dict_country.items(),key=lambda x:x[1],reverse=True) 

2.數據分析

from pyecharts import options as opts
from pyecharts.charts import Pie
from pyecharts.globals import ThemeType
pie = (    Pie()   .add(        "",
        tuple_kind[:20],
        radius=["30%", "75%"],
        rosetype="radius",
        label_opts=opts.LabelOpts(is_show=False),
    )    .set_global_opts(        title_opts=opts.TitleOpts(title="各行業億萬富豪占比統計"),
        legend_opts=opts.LegendOpts(type_="scroll", pos_left="90%", orient="vertical"),
    )    .set_series_opts(label_opts=opts.LabelOpts(formatter="{b}: {c},brjlnll%"))
)pie.render_notebook()

 

python分析全球億萬富翁排行榜,得出富豪最多的國家和行業

 

房地產不愧為龍頭老大,有167名億萬富豪,占比21.58%,前五名分別為房地產,投資,多元化經營,醫藥,對沖基金。

 

完整代碼和數據請在公眾號【Python/ target=_blank class=infotextkey>Python數據分析之禪后臺】回復福布斯獲取

分享到:
標簽:排行榜
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定