Source code for littleballoffur.edge_sampling.randomedgesampler

import random
import networkx as nx
import networkit as nk
from typing import Union, List
from littleballoffur.sampler import Sampler

NKGraph = type(nk.graph.Graph())
NXGraph = nx.classes.graph.Graph


[docs]class RandomEdgeSampler(Sampler): r"""An implementation of random edge sampling. Edges are sampled with the same uniform probability randomly. `"For details about the algorithm see this paper." <http://www.cs.ucr.edu/~michalis/PAPERS/sampling-networking-05.pdf>`_ Args: number_of_edges (int): Number of edges. Default is 100. seed (int): Random seed. Default is 42. """ def __init__(self, number_of_edges: int = 100, seed: int = 42): self.number_of_edges = number_of_edges self.seed = seed self._set_seed() def _create_initial_edge_set(self, graph): """ Choosing initial edges. """ edges = self.backend.get_edges(graph) self._sampled_edges = random.sample(edges, self.number_of_edges)
[docs] def sample(self, graph: Union[NXGraph, NKGraph]) -> Union[NXGraph, NKGraph]: """ Sampling edges randomly. Arg types: * **graph** *(NetworkX or NetworKit graph)* - The graph to be sampled from. Return types: * **new_graph** *(NetworkX or NetworKit graph)* - The graph of sampled edges. """ self._deploy_backend(graph) self._check_number_of_edges(graph) self._create_initial_edge_set(graph) new_graph = self.backend.graph_from_edgelist(self._sampled_edges) return new_graph