Skip to main content

Exponential Random Graph Models in Python

Project description

pyERGM - A Python implementation for ERGM's

An exponential random graphs model (ERGM) is a statistical model that describes a distribution of random graphs. This package provides a simple and easy way to fit and sample from ERGMs.

An ERGM defines a random variable $\mathbf{Y}$, which is simply a random graph on $n$ nodes. The probability of observing a specific graph $y\in \lbrace 0,1 \rbrace ^{n \times n}$ is given by -

$$\Pr(\mathbf{Y}=y | \theta) = \frac{\exp(\theta^Tg(y))}{\sum_{z\in\mathcal{Y}} \exp(\theta^Tg(z))}$$

where $g(y)$ is a vector of statistics that describe the graph $y$, and $\theta \in \mathbb{R}^q$ is a vector of model parameters. Each graph is represented by a binary adjacency matrix, where $y_{ij}=1$ if there is an edge between nodes $i$ and $j$ (and $y_{ji}=1$ in the undirected case).

Fitting a model for even moderately large graphs can be a computationally challenging task. pyERGM keeps this in mind and is implemented to be efficient and scalable by using numpy and Numba, as well as providing an interface for fitting models on a distributed computing environment.

View the full documentation here

Installation

https://pypi.org/project/pyERGM/

Getting started

Fitting an ERGM model requires a graph and a set of statistics that describe the graph. The model is then fit by maximizing the likelihood of the observed graph under the model.

The following example demonstrates how to fit a simple ERGM model from Sampson's monastery data.

from pyERGM import ERGM
from pyERGM.metrics import *
from pyERGM.datasets import load_sampson

sampson_matrix = load_sampson()

num_nodes = sampson_matrix.shape[0]
is_directed = True
metrics = [NumberOfEdgesDirected(), TotalReciprocity()]

model = ERGM(num_nodes, metrics, is_directed=is_directed)
model.fit(sampson_matrix)

The above example fits a model from the Sampson's monastery data using the number of edges and total reciprocity as statistics. The graph is represented as an adjacency matrix, but pyERGM also supports graphs represented as networkx objects (however there may be performance implications for that).

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

pyERGM-0.2.3.tar.gz (61.3 kB view details)

Uploaded Source

Built Distribution

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

pyERGM-0.2.3-py3-none-any.whl (64.0 kB view details)

Uploaded Python 3

File details

Details for the file pyERGM-0.2.3.tar.gz.

File metadata

  • Download URL: pyERGM-0.2.3.tar.gz
  • Upload date:
  • Size: 61.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.8

File hashes

Hashes for pyERGM-0.2.3.tar.gz
Algorithm Hash digest
SHA256 076c3b4d4ef27a4f01b98dec736ec741f4243c4e496e641f4699672f573dd8cb
MD5 2695036c2c6c5a75c408d89cdd86751c
BLAKE2b-256 ccaac3dcd00f34c6a90c81a7054b7cd6bbbfdb00cd9c38241d3ae0fc34768b19

See more details on using hashes here.

File details

Details for the file pyERGM-0.2.3-py3-none-any.whl.

File metadata

  • Download URL: pyERGM-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 64.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.8

File hashes

Hashes for pyERGM-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 ffa03d70c9f92f3e40eddb6e76f5d4bdb32207439ae492c5cc6bb48f34cd6e0f
MD5 d84559da1faaf4a44dd5289917717e2b
BLAKE2b-256 82afe861da5d7f05c7ab9df6775a7d51eb79c31a8e8e2fee05e9f3e6e8ff46dc

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