编程语言
首页 > 编程语言> > python可视化_matplotlib

python可视化_matplotlib

作者:互联网

对于Python数据可视化库,matplotlib 已经成为事实上的数据可视化方面最主要的库,此外还有很多其他库,例如vispy,bokeh, seaborn,pyga,folium 和 networkx,这些库有些是构建在 matplotlib 之上,还有些有其他一些功能。 

目录 


matplotlib


  matplotlib 是一个基于 Python 的 2D 绘图库,其可以在跨平台的在各种硬拷贝格式和交互式环境中绘制出高图形。Matplotlib 能够创建多数类型的图表,如条形图,散点图,条形图,饼图,堆叠图,3D 图和地图图表。

  %matplotlib 命令可以在当前的 Notebook 中启用绘图。Matlibplot 提供了多种绘图 UI ,可进行如下分类 :

  安装Matplotlib命令:pip install matplotlib

基本函数


 legend:增加图例(线的标题) ,格式:plt.legend(handles=(line1, line2, line3),labels=('label1', 'label2', 'label3'),loc='upper right'), 见如下示例代码

1 ln1, = plt.plot(x_data, y_data, color = 'red', linewidth = 2.0, linestyle = '--')
2 ln2, = plt.plot(x_data, y_data2, color = 'blue', linewidth = 3.0, linestyle = '-.')
3 plt.legend(handles=[ln2, ln1], labels=['Android基础', 'Java基础'],  loc='lower right')

 loc参数值:

figure:新建一个画布,格式:figure(num=None, figsize=None, dpi=None, facecolor=None, edgecolor=None, frameon=True)

spines:在matplotlib的图中,默认有四个轴,两个横轴和两个竖轴,可以通过ax = plt.gca()方法获取,gca是‘get current axes’的缩写,获取图像的轴,总共有四个轴 top、bottom、left、right

示例代码:

1 import matplotlib.pyplot as plt
2 
3 fig = plt.figure(figsize=(4, 3), frameon=True, facecolor='r')
4 ax = fig.add_subplot(1, 1, 1)
5 ax.spines['top'].set_color = 'none'
6 ax.spines['right'].set_color = 'none'
7 ax.spines['left'].set_position(('data', 0))
8 ax.spines['bottom'].set_position(('data', 0))
9 plt.show()
View Code

效果图:

中文乱码


1 from pylab import mpl
2 
3 mpl.rcParams['font.sans-serif'] = 'FangSong' # 指定默认字体
4 mpl.rcParams['axes.unicode_minus'] = False  # 解决保存图像是负号'-'显示为方块的问题

 Windows的字体对应名称如下

plot:线性图


格式:plt.plot(x,y,format_string,**kwargs) 

示例:  

 1 import matplotlib.pyplot as plt
 2 from pylab import mpl
 3 
 4 mpl.rcParams['font.sans-serif'] = 'FangSong' # 指定默认字体
 5 mpl.rcParams['axes.unicode_minus'] = False  # 解决保存图像是负号'-'显示为方块的问题
 6 
 7 year = ['1950', '1960', '1970', '1980', '1990', '2000', '2010']
 8 gdp = [300.2, 543.3, 1075.9, 2862.5, 5979.6, 10298.7, 14958.3]
 9 y_data = [100, 200, 300, 400, 500, 600, 700]
10 
11 
12 def draw_plot():
13     # plt.plot(year, gdp, 'go-', year, y_data, 'rp:')
14     plt.plot(year, gdp, 'go-', label='gdp')
15     plt.plot(year, y_data, 'rp:', label='second line')
16     plt.title("plot 线图demo")
17     plt.xlabel('年度')
18     plt.ylabel('gdp')
19     plt.legend()  #生成默认图例
20     plt.show()
View Code

 效果图:

bar:柱状图


格式:bar(left, height, width, alpha=1, width=0.8, color=, edgecolor=, label=, lw=3)

示例

 1 def draw_bar():
 2     plt.bar(x=year, height=gdp, width=0.4, label='gdp', color='green')
 3     plt.bar(x=year, height=y_data, width=0.4, label='secend', color='red')
 4     # 在柱状图上显示具体数值, ha参数控制水平对齐方式, va控制垂直对齐方式
 5     for x, y in enumerate(y_data):
 6         plt.text(x, y - 400, '%s' % y, ha='center', va='bottom')
 7     for x, y in enumerate(gdp):
 8         plt.text(x, y + 400, '%s' % y, ha='center', va='top')
 9 
10     plt.title("bar 条形图")
11     plt.xlabel('年度')
12     plt.ylabel('gdp')
13     plt.legend()
14     plt.show()
View Code

效果图:

 使用 bar() 函数绘制柱状图时,默认不会在柱状图上显示具体的数值。为了能在柱状图上显示具体的数值,程序可以调用 text() 函数在数据图上输出文字,增加如下代码:1for x, y in enumerate(y_data): 

1     for x, y in enumerate(y_data):
2         plt.text(x, y - 400, '%s' % y, ha='center', va='bottom')
3     for x, y in enumerate(gdp):
4         plt.text(x, y + 400, '%s' % y, ha='center', va='top')

效果图:

如上图 所示的显示效果来看柱状图重叠,为了实现条柱井列显示的效果,首先分析条柱重叠在一起的原因。使用 Matplotlib 绘制柱状图时同样也需要 X 轴数据,本程序的 X 轴数据是元素为字符串的 list 列表,因此程序实际上使用各字符串的索引作为 X 轴数据。比如 '1950' 字符串位于列表的第一个位置,因此代表该条柱的数据就被绘制在 X 轴的刻度值1处(由于两个柱状图使用了相同的 X 轴数据,因此它们的条柱完全重合在一起)。为了将多个柱状图的条柱并列显示,程序需要为这些柱状图重新计算不同的 X 轴数据。为了精确控制条柱的宽度,程序可以在调用 bar() 函数时传入 width 参数,这样可以更好地计算条柱的并列方式。

示例 :

 1 def draw_bar2():
 2     barwidth=0.4
 3     plt.bar(x=range(len(year)), height=gdp, width=0.4, label='gdp', color='green')
 4     plt.bar(x=np.arange(len(year)) + barwidth, height=y_data, width=0.4, label='secend', color='red')
 5     # 在柱状图上显示具体数值, ha参数控制水平对齐方式, va控制垂直对齐方式
 6     for x, y in enumerate(gdp):
 7         plt.text(x, y + 400, '%s' % y, ha='center', va='top')
 8     for x, y in enumerate(y_data):
 9         plt.text(x + barwidth, y + 400, '%s' % y, ha='center', va='top')
10 
11     plt.title("bar 条形图")
12     plt.xlabel('年度')
13     plt.ylabel('gdp')
14     plt.legend()
15     plt.show()
View Code

 效果图:

 运行上面程序,将会发现该柱状图的 X 轴的刻度值变成 0、1、2 等值,不再显示年份。为了让柱状图的 X 轴的刻度值显示年份,程序可以调用 xticks() 函数重新设置 X 轴的刻度值,如下:

希望两个条柱之间有一点缝隙,那么程序只要对第二个条柱的 X 轴数据略做修改即可,完整代码如下:

 1 def draw_bar2():
 2     barwidth=0.4
 3     plt.bar(x=range(len(year)), height=gdp, width=barwidth, label='gdp', color='green')
 4     plt.bar(x=np.arange(len(year)) + barwidth + 0.01, height=y_data, width=barwidth, label='secend', color='red')
 5     # 在柱状图上显示具体数值, ha参数控制水平对齐方式, va控制垂直对齐方式
 6     for x, y in enumerate(gdp):
 7         plt.text(x, y + 400, '%s' % y, ha='center', va='top')
 8     for x, y in enumerate(y_data):
 9         plt.text(x + barwidth + 0.01, y + 400, '%s' % y, ha='center', va='top')
10 
11     #X轴添加刻度
12     plt.xticks(np.arange(len(year)) + barwidth/2 + 0.01, year)
13     plt.title("bar 条形图")
14     plt.xlabel('年度')
15     plt.ylabel('gdp')
16     plt.legend()
17     plt.show()
View Code

 效果图:

barh:水平柱状图


barh() 函数的用法与 bar() 函数的用法基本一样,只是在调用 barh() 函数时使用 y参数传入 Y 轴数据,使用 width 参数传入代表条柱宽度的数据。

示例:

 1 def draw_barh():
 2     barwidth = 0.4
 3     plt.barh(y=range(len(year)), width=gdp, height=barwidth, label='gdp', color='green')
 4     plt.barh(y=np.arange(len(year)) + barwidth + 0.01, width=y_data, height=barwidth, label='secend', color='red')
 5     # 在柱状图上显示具体数值, ha参数控制水平对齐方式, va控制垂直对齐方式
 6     for y, x in enumerate(gdp):
 7         plt.text(x + 1000, y + barwidth/2, '%s' % x, ha='center', va='bottom')
 8     for y, x in enumerate(y_data):
 9         plt.text(x + 1400, y + barwidth/2 - 0.01, '%s' % x, ha='center', va='top')
10 
11     # y轴添加刻度
12     plt.yticks(np.arange(len(year)) + barwidth / 2 + 0.01, year)
13     plt.title("barh 水平柱状图")
14     plt.xlabel('gdp')
15     plt.ylabel('年度')
16     plt.legend()
17     plt.show()
View Code

 效果图:

pie:饼图


格式:pie(x, explode=None, labels=None, colors=('b', 'g', 'r', 'c', 'm', 'y', 'k', 'w'), autopct=None, pctdistance=0.6, shadow=False, labeldistance=1.1, startangle=None, radius=None, counterclock=True, wedgeprops=None, textprops=None, center = (0, 0), frame = False )

示例 

1 def draw_pie():
2     plt.pie(x=gdp,
3             labels=year,
4             autopct='%.3f%%',
5             explode=[0, 0, 0, 0.03, 0, 0, 0])
6 
7     plt.title("pie 图")
8     plt.show()
View Code

 效果:

scatter:散点图


格式:scatter(x, y, s=None, c=None, marker=None, cmap=None, norm=None, vmin=None, vmax=None, alpha=None, linewidths=None, verts=None, edgecolors=None, hold=None, data=None, **kwargs)

 示例:

1 def draw_catter():
2     plt.scatter(x=year, y=gdp, c='red', marker='*', s=100)
3 
4     plt.title("catter 散点图")
5     plt.show()
View Code

 效果:

hist:直方图


柱状图与直方图:

格式:pyplot.hist(x, bins=None, range=None, normed=False, weights=None, cumulative=False, bottom=None, histtype=’bar’, align=’mid’, orientation=’vertical’, rwidth=None, log=False, color=None, label=None, stacked=False, hold=None, data=None, **kwargs)

函数返回值:

stackplot:面积图


格式:stackplot(x, *args, labels=(), colors=None, baseline='zero', data=None, **kwargs)

示例 :

1  plt.stackplot(year, gdp, y_data, colors=['r', 'g'])  
2     plt.title("stackplot 面积图")
3     plt.show()

 效果:

 从图上看不出颜色代表的含义,增加图例,完整代码如下:

1 def draw_stackplot():
2     plt.plot([], [], color='r', label='gdp', linewidth=5)
3     plt.plot([], [], color='g', label='y_data', linewidth=5)
4     plt.stackplot(year, gdp, y_data, colors=['r', 'g'])
5     plt.title("stackplot 面积图")
6     plt.legend()
7     plt.show()
View Code

 效果图:

subplot:子图布局


 subplot 在一张数据图上包含多个子图,格式:subplot(nrows, ncols, index, **kwargs)

subplot() 函数也支持直接传入一个三位数的参数,其中第一位数将作为 nrows 参数;第二位数将作为 ncols 参数;第三位数将作为 index 参数。

示例:

 1 def draw_subplot():
 2     plt.figure(figsize=(4, 3))
 3 
 4     x_data = np.linspace(-np.pi, np.pi, 64, endpoint=True)
 5     plt.subplot(2, 1, 1)
 6     plt.plot(x_data, np.sin(x_data))
 7     plt.gca().spines['top'].set_color('none')
 8     plt.gca().spines['right'].set_color('none')
 9     plt.gca().spines['left'].set_position(('data', 0))
10     plt.gca().spines['bottom'].set_position(('data', 0))
11     plt.title('sin')
12 
13     plt.subplot(2, 2, 3)
14     plt.plot(x_data, np.cos(x_data))
15     plt.gca().spines['top'].set_color('none')
16     plt.gca().spines['right'].set_color('none')
17     plt.gca().spines['left'].set_position(('data', 0))
18     plt.gca().spines['bottom'].set_position(('data', 0))
19     plt.title('cos')
20 
21     plt.subplot(2, 2, 4)
22     plt.plot(x_data, np.tan(x_data))
23     plt.gca().spines['top'].set_color('none')
24     plt.gca().spines['right'].set_color('none')
25     plt.gca().spines['left'].set_position(('data', 0))
26     plt.gca().spines['bottom'].set_position(('data', 0))
27     plt.title('tan')
28 
29     plt.show()
View Code

 

效果:

GridSpec:网格布局


指定在给定GridSpec中的子图位置

示例:

 1 def draw_gridspace():
 2     plt.figure(figsize=(4, 3))
 3 
 4     x_data = np.linspace(-np.pi, np.pi, 64, endpoint=True)
 5     gs = gridspace.GridSpec(2, 2)
 6     ax1 = plt.subplot(gs[0, :])
 7     ax2 = plt.subplot(gs[1, 0])
 8     ax3 = plt.subplot(gs[1, 1])
 9 
10     ax1.plot(x_data, np.sin(x_data))
11     ax1.spines['top'].set_color('none')
12     ax1.spines['right'].set_color('none')
13     ax1.spines['left'].set_position(('data', 0))
14     ax1.spines['bottom'].set_position(('data', 0))
15     ax1.set_title('sin')
16 
17     ax2.plot(x_data, np.cos(x_data))
18     ax2.spines['top'].set_color('none')
19     ax2.spines['right'].set_color('none')
20     ax2.spines['left'].set_position(('data', 0))
21     ax2.spines['bottom'].set_position(('data', 0))
22     ax2.set_title('cos')
23 
24     ax3.plot(x_data, np.tan(x_data))
25     ax3.spines['top'].set_color('none')
26     ax3.spines['right'].set_color('none')
27     ax3.spines['left'].set_position(('data', 0))
28     ax3.spines['bottom'].set_position(('data', 0))
29     ax3.set_title('tan')
30 
31     plt.show()
View Code

效果与上节 subplot 一致

 

参考资料


 

标签:None,plt,python,matplotlib,color,spines,set,可视化,data
来源: https://www.cnblogs.com/tgzhu/p/11393590.html