Javatpoint Logo
Javatpoint Logo

SciPy CSGraph - Compressed Sparse Graph

In many disciplines, such as computer science, social networks, transportation systems, and others, graphs are potent mathematical structures that depict relationships between items. An essential activity in many applications, such as graph analysis and computation, can be challenging, especially when working with massive networks with sparse connections. Fortunately, a complete set of tools and techniques for practical graph analysis utilizing sparse matrix representations are provided by the SciPy library's scipy. sparse.csgraph subpackage. Most of the components in a sparse matrix are zero, making them perfect for expressing and modifying massive networks with sparse connectivity.

The Compressed Sparse Graph (csgraph) module is one of several scientific computing modules offered by the Python SciPy library. For working with graphs encoded as sparse matrices, SciPy's csgraph module is utilized.

Large matrices with a considerable proportion of zero elements can be efficiently stored using sparse matrices. The memory needed to represent the matrix decreases since they only store the non-zero elements and their places. This is quite helpful when working with massive graphs, where there are many more edges than feasible edges.

The csgraph module offers methods to carry out various graph-related tasks on sparse graphs efficiently. The shortest pathways, linked components, clustering coefficients, and other procedures are among them.

It would help if you imported the csgraph module from the SciPy library to utilize it:

Once the module has been imported, you may utilize its functions to change your graph. The shortest_path function, for instance, may be used to determine the shortest route between any two nodes in a graph:

Output:

Shortest distances between nodes:
[[0. 1. 2.]
 [1. 0. 1.]
 [2. 1. 0.]]
Shortest path from node 0 to node 2:
[0 1 2]

The shortest_path function determines the shortest route between the graph nodes 0 and 2 in the example above. The predecessor matrix is retrieved using the return_predecessors=True option, and the actual route is then reconstructed using this information. The shortest_path variable includes the nodes along the shortest path from node 0 to node 2, while the distances array contains the shortest distances from node 0 to all other nodes.

A few additional uses of utilizing the SciPy csgraph module:

Computing Connected Components:

Output:

Number of connected components: 1
Component labels: [0 0 0]

The connected_components function determines how many connected components are there in the graph and gives each node a label designating whether it is a linked component.

Finding the Strongly Connected Components:

Output:

Number of strongly connected components: 2
Component labels: [0 0 1 1]

Calculating the Shortest Path with Dijkstra's Algorithm:

Output:

Shortest distances from the starting node:
[0. 2. 3.]
Predecessors along the shortest paths:
[-9999    0    1]

This code uses a weight matrix to construct a sparse weighted graph. The weight_matrix variable represents the weights or separations between the graph's nodes.

The shortest path from a beginning node to every other node in the graph is then determined using Dijkstra's method via the csgraph.dijkstra function. The predecessor matrix, which records the prior node on the shortest path to each node, may be obtained by specifying the return_predecessors=True parameter.

The shortest_distances variable holds the predecessor matrix, while the predecessor variable has the computed shortest distances from the beginning node to all other nodes.

The shortest pathways and lengths are then printed to the console, followed by the ancestors along those paths.

Finding the Minimum Spanning Tree:

Output:

Minimum spanning tree:
[[0. 2. 0. 0.]
 [2. 0. 3. 0.]
 [0. 3. 0. 0.]
 [0. 0. 0. 0.]]

The minimum_spanning_tree function determines the minimal spanning tree of a weighted graph. A sparse matrix is used to represent the resultant tree.

Calculating the Betweenness Centrality:

Output:

Betweenness centrality:
[0. 0. 0.]

In an unweighted network, the betweenness_centrality function calculates the betweenness centrality of each node. The number of shortest routes that travel through a node is used to calculate its relevance.

Clustering Coefficient:

Output:

Clustering coefficient:
[0.33333333 0.33333333 0.33333333 0.]

In an unweighted network, the clustering function determines the clustering coefficient of each node. It measures how closely nodes prefer to group.

Laplacian Matrix and Spectral Clustering:

Output:

Cluster labels:
[0 1 0]

The Laplacian function is used in this illustration to construct the Laplacian matrix of a weighted graph. The Laplacian matrix is subjected to spectral clustering via the spectral_clustering function, which labels the nodes according to their connection patterns.

Depth-First Search:

Output:

Depth-first search order:
[0 1 2]

Using a particular node as the starting point, the depth_first_order function does a depth-first search on an unweighted graph. The order in which the nodes were visited is returned.

Breadth-First Search:

Output:

Breadth-first search order:
[0 1 2]

Using a particular node as the beginning point, the breadth_first_order function runs a breadth-first search on an unweighted graph. The order in which the nodes were visited is returned.

Graph Representations: Various graph representations are supported by the csgraph module, including the adjacency matrix, incidence matrix, and Laplacian matrix. The csgraph_from_dense, csgraph_from_masked, and laplacian functions allow you to switch between several graph representations.

Graph Algorithms: Several graph methods are included in the csgraph module, such as the shortest route algorithms (Dijkstra's algorithm and Bellman-Ford algorithm), maximum flow techniques (Edmonds-Karp algorithms), and Kruskal's algorithm for minimal spanning trees. With sparse graph representations, these methods are made to operate effectively.

Graph Properties: The csgraph module may be used to determine different graph attributes. You may determine the degree, proximity, and eigenvector centralities of nodes in a network. You may also use the module to compute a graph's diameter and radius.

Graph Connectivity: Finding linked, highly connected, and weakly connected components in both directed and undirected graphs are just a few of the connectivity-related capabilities offered by the csgraph module.

Graph Visualization: Graph visualization is not a feature of the csgraph module, which concentrates on graph algorithms and computations. Consider utilizing other libraries for graph visualization in addition to SciPy, such as NetworkX or Graph-tool.

Performance considerations: The csgraph module is made to handle substantial sparse graphs efficiently. It can efficiently handle networks with millions of nodes and edges while consuming the least amount of memory using sparse matrix representations and optimized algorithms.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA