
graph-tool: Efficient network analysis with Python
What is graph-tool? Graph-tool is an efficient Python module for manipulation and statistical analysis of graphs (a.k.a. networks).
Welcome to graph-tool’s documentation!
Aug 21, 2025 · graph-tool is an efficient Python module for manipulation and statistical analysis of graphs (a.k.a. networks). The graph_tool module provides a Graph class and several algorithms that …
Installation instructions – graph-tool: Efficient network analysis with ...
This is because, in reality, graph-tool is a C++ library wrapped in Python, and it has many C++ dependencies such as Boost, CGAL and expat, which are not installable via Python-only package …
Inferring modular network structure — graph-tool 2.98 documentation
graph-tool includes algorithms to identify the large-scale structure of networks via statistical inference in the inference submodule. Here we explain the basic functionality with self-contained examples.
graph_tool — graph-tool 2.98 documentation
Aug 21, 2025 · graph_tool # This is the core module providing the fundamental data structures and functions. Fundamental classes # ... Property Maps # ... Graph IO # ... OpenMP configuration # ...
performance – graph-tool: Efficient network analysis with Python
This page shows a succinct performance comparison between graph-tool and two other popular graph libraries with Python bindings, igraph and NetworkX. NetworkX is a pure-python implementation, …
graph_tool.draw — graph-tool 2.98 documentation
Aug 21, 2025 · This module contains functions for graph drawing and layout. Layout algorithms: Graph drawing: Low-level graph drawing:
Quick start guide — graph-tool 2.98 documentation
Aug 21, 2025 · The graph_tool module provides a Graph class and several algorithms that operate on it. The internals of this class, and of most algorithms, are written in C++ for performance, using the …
graph_tool — graph-tool 2.98 documentation
#! /usr/bin/env python# -*- coding: utf-8 -*-## graph_tool -- a general graph manipulation python module## Copyright (C) 2006-2025 Tiago de Paula Peixoto <[email protected]>## This program is …
Graph — graph-tool 2.98 documentation
Load graph from file_name (which can be either a string or a file-like object). The format is guessed from file_name, or can be specified by fmt, which can be either “gt”, “graphml”, “xml”, “dot” or “gml”.