7 款 Python 可视化工具对比

开发 后端
Python 的科学栈相当成熟,各种应用场景都有相关的模块,包括机器学习和数据分析。数据可视化是发现数据和展示结果的重要一环,只不过过去以来,相对于 R 这样的工具,发展还是落后一些。

Python 的科学栈相当成熟,各种应用场景都有相关的模块,包括机器学习和数据分析。数据可视化是发现数据和展示结果的重要一环,只不过过去以来,相对于 R 这样的工具,发展还是落后一些。

幸运的是,过去几年出现了很多新的Python数据可视化库,弥补了一些这方面的差距。matplotlib 已经成为事实上的数据可视化方面最主要的库,此外还有很多其他库,例如vispy,bokeh, seaborn,  pyga, folium 和 networkx,这些库有些是构建在 matplotlib 之上,还有些有其他一些功能。

本文会基于一份真实的数据,使用这些库来对数据进行可视化。通过这些对比,我们期望了解每个库所适用的范围,以及如何更好的利用整个 Python 的数据可视化的生态系统。

我们在 Dataquest 建了一个交互课程,教你如何使用 Python 的数据可视化工具。如果你打算深入学习,可以点这里

探索数据集

在我们探讨数据的可视化之前,让我们先来快速的浏览一下我们将要处理的数据集。我们将要使用的数据来自 openlights。我们将要使用航线数据集、机场数据集、航空公司数据集。其中,路径数据的每一行对应的是两个机场之间的飞行路径;机场数据的每一行 对应的是世界上的某一个机场,并且给出了相关信息;航空公司的数据的每一行给出的是每一个航空公司。

首先我们先读取数据:

  1. # Import the pandas library. 
  2. import pandas 
  3. # Read in the airports data. 
  4. airports = pandas.read_csv("airports.csv", header=None, dtype=str) 
  5. airports.columns = ["id""name""city""country""code""icao""latitude""longitude""altitude""offset""dst""timezone"
  6. # Read in the airlines data. 
  7. airlines = pandas.read_csv("airlines.csv", header=None, dtype=str) 
  8. airlines.columns = ["id""name""alias""iata""icao""callsign""country""active"
  9. # Read in the routes data. 
  10. routes = pandas.read_csv("routes.csv", header=None, dtype=str) 
  11. routes.columns = ["airline""airline_id""source""source_id""dest""dest_id""codeshare""stops""equipment"

这些数据没有列的***项,因此我们通过赋值 column 属性来添加列的***项。我们想要将每一列作为字符串进行读取,因为这样做可以简化后续以行 id 为匹配,对不同的数据框架进行比较的步骤。我们在读取数据时设置了 dtype 属性值达到这一目的。

我们可以快速浏览一下每一个数据集的数据框架。

airports.head()

airlines.head()

routes.head()

我们可以分别对每一个单独的数据集做许多不同有趣的探索,但是只要将它们结合起来分析才能取得***的收获。Pandas 将会帮助我们分析数据,因为它能够有效的过滤权值或者通过它来应用一些函数。我们将会深入几个有趣的权值因子,比如分析航空公司和航线。

那么在此之前我们需要做一些数据清洗的工作。

routes = routes[routes["airline_id"] != "//N"]

这一行命令就确保了我们在 airline_id 这一列只含有数值型数据。

制作柱状图

现在我们理解了数据的结构,我们可以进一步地开始描点来继续探索这个问题。首先,我们将要使用 matplotlib 这个工具,matplotlib 是一个相对底层的 Python 栈中的描点库,所以它比其他的工具库要多敲一些命令来做出一个好看的曲线。另外一方面,你可以使用 matplotlib 几乎做出任何的曲线,这是因为它十分的灵活,而灵活的代价就是非常难于使用。

我们首先通过做出一个柱状图来显示不同的航空公司的航线长度分布。一个柱状图将所有的航线的长度分割到不同的值域,然后对落入到不同的值域范围内的航线进行计数。从中我们可以知道哪些航空公司的航线长,哪些航空公司的航线短。

为了达到这一点,我们需要首先计算一下航线的长度,***步就要使用距离公式,我们将会使用余弦半正矢距离公式来计算经纬度刻画的两个点之间的距离。

  1. import math 
  2. def haversine(lon1, lat1, lon2, lat2): 
  3.     # Convert coordinates to floats. 
  4.     lon1, lat1, lon2, lat2 = [float(lon1), float(lat1), float(lon2), float(lat2)] 
  5.     # Convert to radians from degrees. 
  6.     lon1, lat1, lon2, lat2 = map(math.radians, [lon1, lat1, lon2, lat2]) 
  7.     # Compute distance. 
  8.     dlon = lon2 - lon1  
  9.     dlat = lat2 - lat1  
  10.     a = math.sin(dlat/2)**2 + math.cos(lat1) * math.cos(lat2) * math.sin(dlon/2)**2 
  11.     c = 2 * math.asin(math.sqrt(a))  
  12.     km = 6367 * c 
  13.     return km 

然后我们就可以使用一个函数来计算起点机场和终点机场之间的单程距离。我们需要从路线数据框架得到机场数据框架所对应的 source_id 和 dest_id,然后与机场的数据集的 id 列相匹配,然后就只要计算就行了,这个函数是这样的:

  1. def calc_dist(row): 
  2.     dist = 0 
  3.     try
  4.         # Match source and destination to get coordinates. 
  5.         source = airports[airports["id"] == row["source_id"]].iloc[0
  6.         dest = airports[airports["id"] == row["dest_id"]].iloc[0
  7.         # Use coordinates to compute distance. 
  8.         dist = haversine(dest["longitude"], dest["latitude"], source["longitude"], source["latitude"]) 
  9.     except (ValueError, IndexError): 
  10.         pass 
  11.     return dist 

如果 source_id 和 dest_id 列没有有效值的话,那么这个函数会报错。因此我们需要增加 try/catch 模块对这种无效的情况进行捕捉。

***,我们将要使用 pandas 来将距离计算的函数运用到 routes 数据框架。这将会使我们得到包含所有的航线线长度的 pandas 序列,其中航线线的长度都是以公里做单位。

route_lengths = routes.apply(calc_dist, axis=1)

现在我们就有了航线距离的序列了,我们将会创建一个柱状图,它将会将数据归类到对应的范围之内,然后计数分别有多少的航线落入到不同的每个范围:

 

  1. import matplotlib.pyplot as plt  
  2. %matplotlib inline  
  3.  
  4. plt.hist(route_lengths, bins=20

7 款 Python 可视化工具对比

我们用 import matplotlib.pyplot as plt 导入 matplotlib 描点函数。然后我们就使用 %matplotlib inline 来设置 matplotlib 在 ipython 的 notebook 中描点,最终我们就利用 plt.hist(route_lengths, bins=20) 得到了一个柱状图。正如我们看到的,航空公司倾向于运行近距离的短程航线,而不是远距离的远程航线。

使用 seaborn

我们可以利用 seaborn 来做类似的描点,seaborn 是一个 Python 的高级库。Seaborn 建立在 matplotlib 的基础之上,做一些类型的描点,这些工作常常与简单的统计工作有关。我们可以基于一个核心的概率密度的期望,使用 distplot 函数来描绘一个柱状图。一个核心的密度期望是一个曲线 —— 本质上是一个比柱状图平滑一点的,更容易看出其中的规律的曲线。

  1. import seaborn  
  2. seaborn.distplot(route_lengths, bins=20

7 款 Python 可视化工具对比

正如你所看到的那样,seaborn 同时有着更加好看的默认风格。seaborn 不含有与每个 matplotlib 的版本相对应的版本,但是它的确是一个很好的快速描点工具,而且相比于 matplotlib 的默认图表可以更好的帮助我们理解数据背后的含义。如果你想更深入的做一些统计方面的工作的话,seaborn 也不失为一个很好的库。

条形图

柱状图也虽然很好,但是有时候我们会需要航空公司的平均路线长度。这时候我们可以使用条形图--每条航线都会有一个单独的状态条,显示航空公司航线 的平均长度。从中我们可以看出哪家是国内航空公司哪家是国际航空公司。我们可以使用pandas,一个python的数据分析库,来酸楚每个航空公司的平 均航线长度。

  1. import numpy 
  2. # Put relevant columns into a dataframe. 
  3. route_length_df = pandas.DataFrame({"length": route_lengths, "id": routes["airline_id"]}) 
  4. # Compute the mean route length per airline. 
  5. airline_route_lengths = route_length_df.groupby("id").aggregate(numpy.mean) 
  6. # Sort by length so we can make a better chart. 
  7. airline_route_lengths = airline_route_lengths.sort("length", ascending=False) 

我们首先用航线长度和航空公司的id来搭建一个新的数据框架。我们基于airline_id把route_length_df拆分成组,为每个航空 公司建立一个大体的数据框架。然后我们调用pandas的aggregate函数来获取航空公司数据框架中长度列的均值,然后把每个获取到的值重组到一个 新的数据模型里。之后把数据模型进行排序,这样就使得拥有最多航线的航空公司拍到了前面。

这样就可以使用matplotlib把结果画出来。

plt.bar(range(airline_route_lengths.shape[0]), airline_route_lengths["length"])

7 款 Python 可视化工具对比

Matplotlib的plt.bar方法根据每个数据模型的航空公司平均航线长度(airline_route_lengths["length"])来做图。

问题是我们想看出哪家航空公司拥有的航线长度是什么并不容易。为了解决这个问题,我们需要能够看到坐标轴标签。这有点难,毕竟有这么多的航空公司。 一个能使问题变得简单的方法是使图表具有交互性,这样能实现放大跟缩小来查看轴标签。我们可以使用bokeh库来实现这个--它能便捷的实现交互性,作出 可缩放的图表。

要使用booked,我们需要先对数据进行预处理:

  1. def lookup_name(row): 
  2.     try
  3.         # Match the row id to the id in the airlines dataframe so we can get the name. 
  4.         name = airlines["name"][airlines["id"] == row["id"]].iloc[0
  5.     except (ValueError, IndexError): 
  6.         name = "" 
  7.     return name 
  8. # Add the index (the airline ids) as a column. 
  9. airline_route_lengths["id"] = airline_route_lengths.index.copy() 
  10. # Find all the airline names. 
  11. airline_route_lengths["name"] = airline_route_lengths.apply(lookup_name, axis=1
  12. # Remove duplicate values in the index. 
  13. airline_route_lengths.index = range(airline_route_lengths.shape[0]) 

上面的代码会获取airline_route_lengths中每列的名字,然后添加到name列上,这里存贮着每个航空公司的名字。我们也添加到id列上以实现查找(apply函数不传index)。

***,我们重置索引序列以得到所有的特殊值。没有这一步,Bokeh 无法正常运行。

现在,我们可以继续说图表问题:

  1. import numpy as np 
  2. from bokeh.io import output_notebook 
  3. from bokeh.charts import Bar, show 
  4. output_notebook() 
  5. p = Bar(airline_route_lengths, 'name', values='length', title="Average airline route lengths"
  6. show(p) 

用 output_notebook 创建背景虚化,在 iPython 的 notebook 里画出图。然后,使用数据帧和特定序列制作条形图。***,显示功能会显示出该图。

这个图实际上不是一个图像--它是一个 JavaScript 插件。因此,我们在下面展示的是一幅屏幕截图,而不是真实的表格。

有了它,我们可以放大,看哪一趟航班的飞行路线最长。上面的图像让这些表格看起来挤在了一起,但放大以后,看起来就方便多了。

水平条形图

Pygal 是一个能快速制作出有吸引力表格的数据分析库。我们可以用它来按长度分解路由。首先把我们的路由分成短、中、长三个距离,并在 route_lengths 里计算出它们各占的百分比。

  1. long_routes = len([k for k in route_lengths if k > 10000]) / len(route_lengths) 
  2. medium_routes = len([k for k in route_lengths if k < 10000 and k > 2000]) / len(route_lengths) 
  3. short_routes = len([k for k in route_lengths if k < 2000]) / len(route_lengths) 

然后我们可以在 Pygal 的水平条形图里把每一个都绘成条形图:

  1. import pygal 
  2. from IPython.display import SVG 
  3. chart = pygal.HorizontalBar() 
  4. chart.title = 'Long, medium, and short routes' 
  5. chart.add('Long', long_routes * 100
  6. chart.add('Medium', medium_routes * 100
  7. chart.add('Short', short_routes * 100
  8. chart.render_to_file('routes.svg'
  9. SVG(filename='routes.svg'

[[157805]]

首先,我们使用 pandasapplymethod 计算每个名称的长度。它将找到每个航空公司的名字字符的数量。然后,我们使用 matplotlib 做一个散点图来比较航空 id 的长度。当我们绘制时,我们把 theidcolumn of airlines 转换为整数类型。如果我们不这样做是行不通的,因为它需要在 x 轴上的数值。我们可以看到不少的长名字都出现在早先的 id 中。这可能意味着航空公司在成立前往往有较长的名字。

我们可以使用 seaborn 验证这个直觉。Seaborn 增强版的散点图,一个联合的点,它显示了两个变量是相关的,并有着类似地分布。

data = pandas.DataFrame({"lengths": name_lengths, "ids": airlines["id"].astype(int)})
seaborn.jointplot(x="ids", y="lengths", data=data)

7 款 Python 可视化工具对比

上面的图表明,两个变量之间的相关性是不明确的——r 的平方值是低的。

画弧线

在地图上看到所有的航空路线是很酷的,幸运的是,我们可以使用 basemap 来做这件事。我们将画弧线连接所有的机场出发地和目的地。每个弧线想展示一个段都航线的路径。不幸的是,展示所有的线路又有太多的路由,这将会是一团糟。 替代,我们只现实前 3000 个路由。

 

  1. # Make a base map with a mercator projection.  Draw the coastlines. 
  2. m = Basemap(projection='merc',llcrnrlat=-80,urcrnrlat=80,llcrnrlon=-180,urcrnrlon=180,lat_ts=20,resolution='c'
  3. m.drawcoastlines() 
  4. # Iterate through the first 3000 rows. 
  5. for name, row in routes[:3000].iterrows(): 
  6.     try
  7.         # Get the source and dest airports. 
  8.         source = airports[airports["id"] == row["source_id"]].iloc[0
  9.         dest = airports[airports["id"] == row["dest_id"]].iloc[0
  10.         # Don't draw overly long routes. 
  11.         if abs(float(source["longitude"]) - float(dest["longitude"])) < 90
  12.             # Draw a great circle between source and dest airports. 
  13.             m.drawgreatcircle(float(source["longitude"]), float(source["latitude"]), float(dest["longitude"]), float(dest["latitude"]),linewidth=1,color='b'
  14.     except (ValueError, IndexError): 
  15.         pass 
  16.  
  17. # Show the map. 
  18. plt.show() 

7 款 Python 可视化工具对比

上面的代码将会画一个地图,然后再在地图上画线路。我们添加一了写过滤器来阻止过长的干扰其他路由的长路由。

画网络图

我们将做的最终的探索是画一个机场网络图。每个机场将会是网络中的一个节点,并且如果两点之间有路由将划出节点之间的连线。如果有多重路由,将添加线的权重,以显示机场连接的更多。将使用 networkx 库来做这个功能。

首先,计算机场之间连线的权重。

 

  1. # Initialize the weights dictionary. 
  2. weights = {} 
  3. # Keep track of keys that have been added once -- we only want edges with a weight of more than 1 to keep our network size manageable. 
  4. added_keys = [] 
  5. # Iterate through each route. 
  6. for name, row in routes.iterrows(): 
  7.     # Extract the source and dest airport ids. 
  8.     source = row["source_id"
  9.     dest = row["dest_id"
  10.  
  11.     # Create a key for the weights dictionary. 
  12.     # This corresponds to one edge, and has the start and end of the route. 
  13.     key = "{0}_{1}".format(source, dest) 
  14.     # If the key is already in weights, increment the weight. 
  15.     if key in weights: 
  16.         weights[key] += 1 
  17.     # If the key is in added keys, initialize the key in the weights dictionary, with a weight of 2
  18.     elif key in added_keys: 
  19.         weights[key] = 2 
  20.     # If the key isn't in added_keys yet, append it. 
  21.     # This ensures that we aren't adding edges with a weight of 1
  22.     else
  23.         added_keys.append(key) 

一旦上面的代码运行,这个权重字典就包含了每两个机场之间权重大于或等于 2 的连线。所以任何机场有两个或者更多连接的路由将会显示出来。

 

  1. # Import networkx and initialize the graph. 
  2. import networkx as nx 
  3. graph = nx.Graph() 
  4. # Keep track of added nodes in this set so we don't add twice. 
  5. nodes = set() 
  6. # Iterate through each edge. 
  7. for k, weight in weights.items(): 
  8.     try
  9.         # Split the source and dest ids and convert to integers. 
  10.         source, dest = k.split("_"
  11.         source, dest = [int(source), int(dest)] 
  12.         # Add the source if it isn't in the nodes. 
  13.         if source not in nodes: 
  14.             graph.add_node(source) 
  15.         # Add the dest if it isn't in the nodes. 
  16.         if dest not in nodes: 
  17.             graph.add_node(dest) 
  18.         # Add both source and dest to the nodes set. 
  19.         # Sets don't allow duplicates. 
  20.         nodes.add(source) 
  21.         nodes.add(dest) 
  22.  
  23.         # Add the edge to the graph. 
  24.         graph.add_edge(source, dest, weight=weight) 
  25.     except (ValueError, IndexError): 
  26.         pass 
  27. pos=nx.spring_layout(graph) 
  28. # Draw the nodes and edges. 
  29. nx.draw_networkx_nodes(graph,pos, node_color='red', node_size=10, alpha=0.8
  30. nx.draw_networkx_edges(graph,pos,width=1.0,alpha=1
  31. # Show the plot. 
  32. plt.show() 

总结

有一个成长的数据可视化的 Python 库,它可能会制作任意一种可视化。大多数库基于 matplotlib 构建的并且确保一些用例更简单。如果你想更深入的学习怎样使用 matplotlib,seaborn 和其他工具来可视化数据,在这儿检出其他课程。

责任编辑:王雪燕 来源: oschina
相关推荐

2021-04-11 09:51:25

Redis可视化工具

2019-12-23 14:17:46

数据可视化工具

2017-07-04 16:00:16

PythonMatplotlib可视化工具

2017-07-27 09:49:37

Python工具Matplotlib

2021-06-11 17:45:57

大数据可视化工具

2020-07-16 15:10:46

工具可视化Python

2021-04-14 16:20:39

可视化大数据工具

2022-01-17 11:09:46

数据可视化工具开发

2022-07-12 09:35:59

JSON可视化工具

2019-06-11 09:35:34

可视化工具图形

2021-03-30 10:10:37

PyTorch可视化工具命令

2017-07-03 16:44:10

数据库MongoDBNoSQL

2022-08-15 08:02:09

Go程序函数

2024-02-26 12:02:37

Python数据可视化D3blocks

2023-03-06 08:03:10

Python可视化工具

2024-02-19 00:00:00

Git可视化工具

2017-07-26 16:48:46

神经网络可视化工具TensorFlow

2022-10-21 15:47:59

测试工具鸿蒙

2021-03-18 09:07:13

日志可视化工具Devops

2019-06-27 16:28:39

数据可视化JupyterGoogle Char
点赞
收藏

51CTO技术栈公众号