当前位置: 首页>>代码示例>>Python>>正文


Python DiGraph.name方法代码示例

本文整理汇总了Python中networkx.DiGraph.name方法的典型用法代码示例。如果您正苦于以下问题:Python DiGraph.name方法的具体用法?Python DiGraph.name怎么用?Python DiGraph.name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在networkx.DiGraph的用法示例。


在下文中一共展示了DiGraph.name方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: to_directed

# 需要导入模块: from networkx import DiGraph [as 别名]
# 或者: from networkx.DiGraph import name [as 别名]
 def to_directed(self):
     from networkx import DiGraph
     G = DiGraph()
     G.name = self.name
     G.add_nodes_from(self.n)
     G.add_edges_from(((u, v, deepcopy(data))
         for u, nbrs in self.a
         for v, data in nbrs.items()))
     G.graph = deepcopy(self.data)
     G._nodedata = deepcopy(self._nodedata)
     G.node = G._nodedata # hack to pass test
     return G
开发者ID:hagberg,项目名称:nx3k,代码行数:14,代码来源:nxgraph.py

示例2: to_directed

# 需要导入模块: from networkx import DiGraph [as 别名]
# 或者: from networkx.DiGraph import name [as 别名]
 def to_directed(self):
     
     from networkx import DiGraph 
     G=DiGraph()
     G.name=self.name
     G.add_nodes_from(self)
     G.add_edges_from( ((u,v,deepcopy(data)) 
                        for u,nbrs in self.adjacency_iter() 
                        for v,data in nbrs.iteritems()) )
     G.graph=deepcopy(self.graph)
     G.node=deepcopy(self.node)
     return G
开发者ID:mrv-developers,项目名称:mrv-networkx,代码行数:14,代码来源:graph.py

示例3: _rename_nodes

# 需要导入模块: from networkx import DiGraph [as 别名]
# 或者: from networkx.DiGraph import name [as 别名]
    def _rename_nodes(self, graph):
        new_graph = DiGraph()
        #  print len(self._node_names)
        for node in graph.nodes():
            #  Add all the nodes with the names given in the data set
            new_node_name = self._node_names[node]
            new_graph.add_node(new_node_name)

        for edge in graph.edges():
            #  Add all the  with the names given in the data set
            new_source_node = self._node_names[ edge[0] ]
            new_destination_node = self._node_names[ edge[1] ]
            new_graph.add_edge(new_source_node, new_destination_node)
        new_graph.name = self._network_name
        return new_graph
开发者ID:hbarthwal,项目名称:course_projects,代码行数:17,代码来源:random_bn_generator.py


注:本文中的networkx.DiGraph.name方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。