Skip to main content

A Python package for community-separated layout of large networkx graphs.

Project description

Community Layout

Layout of large networkx graphs with community segmentation

A small package used to visualise community-structured networkx graphs.

Layout of communities individually, with communities themselves arranged according to their inter-links, allows far faster visualisation of large graphs.

Note: This is an early version, and usage will likely be changed as new functionality is added.

Usage

The layout class is accessed via:

from community_layout.layout_class import CommunityLayout

Position calculation is during __init__. After __init__, CommunityLayout(G).full_positions is an dictionary of keys corresponding to node positions, as in networkx layout algorithms.

Basic usage is as follows:

import networkx as nx
from community_layout.layout_class import CommunityLayout

G = nx.gnm_random_graph(2000, 40000)
layout = CommunityLayout(G)
pos = layout.full_positions

There are several parameters that can be changed by the user:

CommunityLayout(self,
                G,
                community_compression = 0.25,
                layout_algorithm = nx.spring_layout,
                layout_kwargs = {"k":75, "iterations":1000},
                community_algorithm = community.louvain_communities,
                community_kwargs = {"resolution":2})

These are designed to work with networkx functions, but custom functions will work assuming similar syntax and that they return the same objects.

community_algorithm can also be a list of pre-determined communities, ie ["community_1":{"node_id1", "node_id2",...}, "community_2":{"node_id3", "node_id4",...}].

community_compression controls the scale compression of individual community sub-layouts. Lower values will result in each community occupying smaller portions of the overall layout.

Optionally we also include figure plotting:

layout.display(colors = None,
               bundle = False,
               complex_alphas = True,
               ax = None)

Which, if passed ax = matplotlib.Axes, returns the same. If no Axes is passed, it saves a .png in the working directory and calls plt.show().

Note: Edge bundling is currently a much heavier process than the community layout process.

Requirements

Requires the packages numpy, pandas, tqdm, scipy and networkx to be installed.

matplotlib is required for figure plotting. Edge bundling requires datashader and scikit-image.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

community-layout-1.0.6.tar.gz (43.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

community_layout-1.0.6-py3-none-any.whl (31.3 kB view details)

Uploaded Python 3

File details

Details for the file community-layout-1.0.6.tar.gz.

File metadata

  • Download URL: community-layout-1.0.6.tar.gz
  • Upload date:
  • Size: 43.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.13

File hashes

Hashes for community-layout-1.0.6.tar.gz
Algorithm Hash digest
SHA256 8d2dc28283068dd16471a905704ba7147528e84635e88fe1b7a3a103b3348414
MD5 92a3033bbca25e2388ada73023eeb301
BLAKE2b-256 51999cefce3c725e5b1f30d4d1bfb45a28d853e414068c027761b87c3e9d5870

See more details on using hashes here.

File details

Details for the file community_layout-1.0.6-py3-none-any.whl.

File metadata

File hashes

Hashes for community_layout-1.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 a04915af3499fbabf97bb899857c703a5d285f295d368291bfde728917010882
MD5 3bbe1bc6fec342289533e1d3037c7d96
BLAKE2b-256 3838191c8dc194443ce938fdbce8e55352d575dff4e7f40c89cd4b5a1b3e6135

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page