雷达图或蛛网图(Radar chart) 简介 A radar chart is a way of showing multiple data points and the variation between them. They are often useful for comparing the points of two or more different data sets 使用案例 newChart(ctx).Radar(data,options); 数据结构 var data ={
python数据结构之图的实现,官方有一篇文章介绍,http://www.python.org/doc/essays/graphs.html 下面简要的介绍下: 比如有这么一张图: A -> B A -> C B -> C B -> D C -> D D -> C E -> F F -> C 可以用字典和列表来构建 graph = {'A': ['B', 'C'], 'B': ['C', 'D'], 'C': ['D'], 'D': ['C'], 'E':