Python 数据分析可视化

1、画图需要使用 matplotlib这个包


代码如下:

import matplotlib.pyplot as plt
year=[1950,1970,1990,2010]
pop=[2.519,3.692,5.263,6.972]
values=[0,0.6,1.4,1.6,2.2,2.5,2.6,3.2,3.5,3.9,4.2,6]

plt.xlabel('year')#添加x轴标签
plt.ylabel('pop')#添加y轴标签
plt.title('world population projections')#给图添加标题
plt.yticks([0,2,4,6,8,10],
           ['0','2B','4B','6B','8B','10B'])#给y轴添加刻度,并标明单位
#plt.plot(year,pop)#画曲线图
#plt.scatter(year,pop)#画散点图
#plt.hist(values,bins=3)#画直方图
plt.fill_between(year,pop,0,color='green')#填充颜色图
plt.show()

Python 数据分析可视化_第1张图片

Python 数据分析可视化_第2张图片

Python 数据分析可视化_第3张图片

Python 数据分析可视化_第4张图片

你可能感兴趣的:(Python编程)