[TOC]
第六章
图形要素
参考B组课程
import matplotlib.pyplot as plt
Color = (42/256, 87/256, 141/256, 1/3)
# r,g,b, alpha
plt.xticks(index+1/3, result.index)
plt.legend(['...'])
plt.show()
散点图、折线图
- 线型区分
plot(x,y,type,color)
# type:
# '.'|':'|'o'
# '-'|'-.'|'--'
饼图
- 比例
pie
柱形图、直方图
- 方向区别,频度等
bar(index, data,color)
barh(index,data,color)
hist(data,color)
地图、热力地图
- 地区形状
- 区域上色
- 热力地图:指定位置绘制小图
basemap = Basemap(
llcrnrlon=73.55770111084013,
llcrnrlat=18.159305572509766,
urcrnrlon=134.7739257812502,
urcrnrlat=53.56085968017586
)
chinaAdm1 = basemap.readshapefile(
'CHN_adm1',
'china'
)
for info, shape in zip(basemap.china_info, basemap.china):
if info['NAME_1']=='Liaoning':
patches.append(
Polygon(
numpy.array(shape),
True
)
)