2021年中国富翁分析4
作者:冯德平(山野雪人)
#富翁最多的前5个领域
#绘制饼图(甜甜圈图)
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
dataCN = pd.read_csv("D:\\temp\\dataCN1.csv") #读文件
#print(dataCN.head())
FromSource = dataCN["Source"].value_counts().head()
index = FromSource.index #索引值,即领域名称
sources = FromSource.values #某一领域的数量值
custom_colors = ["pink", "yellow", 'tomato', "skyblue", "yellowgreen"] #颜色
plt.figure(figsize=(8, 8)) #画布尺寸
plt.pie(sources, labels=index, colors=custom_colors) #画饼图,括号中参数见前面的解释
central_circle = plt.Circle((0, 0), 0.5, color='white') #中心圆,如将white改成yellow,中心圆则变成黄色
fig = plt.gcf() #获取当前图形
fig.gca().add_artist(central_circle) #中心圆,没有这行会画出一个饼图,有则会画出一个甜甜圈
plt.rc('font', size=12) #字体大小
plt.title("Top 5 Domains to Become a Billionaire", fontsize=20) #标题,用汉字会发生错误
plt.show() #绘图
print(FromSource)
'''
real estate 51
pharmaceuticals 44
e-commerce 18
software 17
education 16
'''