简体   繁体   English

如何从networkx图中提取随机节点?

[英]How to extract random nodes from networkx graph?

How to extract random nodes from networkx graph?如何从networkx图中提取随机节点? I have a map in the form of a networkx graph and I have to extract 5 random nodes from it and get the data associated to each of them and their edges.我有一个 networkx 图形式的地图,我必须从中提取 5 个随机节点并获取与每个节点及其边相关联的数据。 I suppose I can do that with "np.random.choice" but I still can't get any results.我想我可以用“np.random.choice”做到这一点,但我仍然无法得到任何结果。

import networkx as nx
from random import choice

g = nx.Graph()
g.add_edge(1,2)
g.add_edge(1,3)
g.add_edge(1,4)
g.add_edge(1,5)
g.add_edge(5,6)

random_node = choice(g.nodes())

From possible duplicate: how to select two nodes (pairs of nodes) randomly from a graph that are NOT connected, Python, networkx从可能的重复: 如何从未连接的图中随机选择两个节点(节点对),Python,networkx

Instead of using the choice , please check the sample method.请检查sample方法,而不是使用choice

from random import sample
import os
import networkx as nx

# load a graph from local
working_path = r'XXX'
graph = nx.read_gexf(os.path.join(working_path, 'XXX.gexf'))
# random sample 3 nodes from the graph
random_nodes = sample(list(graph.nodes()), 3)

If you have a graph g with different node types, you could use the followig function to count the number of nodes having a specific type:如果您有一个具有不同节点类型的图g ,您可以使用 followig 函数来计算具有特定类型的节点的数量:

def count_nodes_with_type(graph, attribute_name, query):
    """
    Count the number of nodes with specific type
    :param graph: a networkx graph whose nodes have several different types
    :param attribute_name: the attribute name used to access different type of nodes
    :param query: the search query
    :return: number of nodes satisfying the query
    """
    node_attribute_dict = nx.get_node_attributes(graph, attribute_name)
    filtered_nodes = {key: value for (key, value) in node_attribute_dict.items() if value == query}
    return len(filtered_nodes)

You could use the same logic to count the number of specific type of edges using the nx.get_edge_attributes method.您可以使用相同的逻辑来计算使用nx.get_edge_attributes方法的特定类型边的nx.get_edge_attributes

How to extract random nodes from networkx graph?如何从networkx图提取随机节点? I have a map in the form of a networkx graph and I have to extract 5 random nodes from it and get the data associated to each of them and their edges.我有一个networkx图形式的地图,我必须从中提取5个随机节点,并获取与每个节点及其边缘关联的数据。 I suppose I can do that with "np.random.choice" but I still can't get any results.我想我可以使用“ np.random.choice”来做到这一点,但我仍然无法获得任何结果。

With somewhat recent versions of NetworkX ( >= 2.5 I think), you can use random.sample() directly on the node view to get a sample of either just the labels/indexes of the nodes, or the labels and the data of the nodes.使用 NetworkX 的最新版本(我认为>= 2.5 ),您可以直接在节点视图上使用random.sample()来获取节点的标签/索引或标签和数据的样本节点。

import networkx as nx
import random as rd

# Generate the example Karate club graph provided in NetworkX
g = nx.karate_club_graph()
print(g.nodes)  # Output: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33]

# Get a random sample (without replacement) of the node labels/indexes:
sample = rd.sample(g.nodes, 3)
print(sample)  # Output: [22, 18, 6]

# Get a random sample (without replacement) of the node labels and data:
sample = rd.sample(g.nodes.items(), 3)
print(sample)  # Output: [(24, {'club': 'Officer'}), (27, {'club': 'Officer'}), (31, {'club': 'Officer'})]

In slightly older versions (from 2.0 but before 2.5 ), you needed to convert the node view to a list before using random.sample .在稍旧的版本中(从2.02.5之前),您需要在使用random.sample之前将节点视图转换为列表。

Note: You do not have to worry about this if you have an up-to-date NetworkX package installed.注意:如果您安装了最新的 NetworkX 软件包,则不必担心这一点。

# Get a random sample (without replacement) of the node labels/indexes
# in older version of NetworkX.
sample = rd.sample(list(g.nodes), 3)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM