Skip to main content

Logo

Source Code PyPI version downloads test publish docs codecov DOI Streamlit App

tda-mapper

tda-mapper is a Python library based on the Mapper algorithm, a key tool in Topological Data Analysis (TDA). Designed for efficient computations and backed by advanced spatial search techniques, it scales seamlessly to high dimensional data, making it suitable for applications in machine learning, data mining, and exploratory data analysis.

Further details in the documentation and in the preprint.

Main Features

  • Fast Mapper graph construction: Accelerates computations with efficient spatial search, enabling analysis of large, high-dimensional datasets.

  • Scikit-learn compatibility: Easily integrate Mapper as a part of your machine learning workflows.

  • Flexible visualization options: Visualize Mapper graphs with multiple supported backends, tailored to your needs.

  • Interactive exploration: Explore data interactively through a user-friendly app.

Background

The Mapper algorithm transforms complex datasets into graph representations that highlight clusters, transitions, and topological features. These insights reveal hidden patterns in data, applicable across fields like social sciences, biology, and machine learning. For an in-depth coverage of Mapper, including its mathematical foundations and applications, read the the original paper.

Step 1 Step 2 Step 3 Step 4
Step 1 Step 2 Step 3 Step 2
Choose lens Cover image Run clustering Build graph

Citations

If you use tda-mapper in your work, please consider citing both the library, archived in a permanent Zenodo record, and the preprint, which provides a broader methodological overview. We recommend citing the specific version of the library used in your research, as well as the latest version of the preprint. For citation examples, refer to the documentation.

Quick Start

Installation

To install the latest version uploaded on PyPI

pip install tda-mapper

How to Use

Here's a minimal example using the circles dataset from scikit-learn to demonstrate how to use tda-mapper:

import numpy as np

from sklearn.datasets import make_circles
from sklearn.decomposition import PCA
from sklearn.cluster import DBSCAN

from tdamapper.learn import MapperAlgorithm
from tdamapper.cover import CubicalCover
from tdamapper.plot import MapperPlot

# load a labelled dataset
X, labels = make_circles(n_samples=5000, noise=0.05, factor=0.3, random_state=42)
y = PCA(2, random_state=42).fit_transform(X)

cover = CubicalCover(n_intervals=10, overlap_frac=0.3)
clust = DBSCAN()
graph = MapperAlgorithm(cover, clust).fit_transform(X, y)

# color according to labels
fig = MapperPlot(graph, dim=2, seed=42, iterations=60).plot_plotly(colors=labels)
fig.show(config={'scrollZoom': True})
Original Dataset Mapper Graph
Original Dataset Mapper Graph

More examples can be found in the documentation.

Interactive App

Use our Streamlit app to visualize and explore your data without writing code. You can run a live demo directly on Streamlit Cloud, or locally on your machine using the following:

pip install -r app/requirements.txt
streamlit run app/streamlit_app.py

Download files

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

Source Distribution

tda_mapper-0.9.0.tar.gz (44.5 kB view details)

Uploaded Source

Built Distribution

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

tda_mapper-0.9.0-py3-none-any.whl (42.2 kB view details)

Uploaded Python 3

File details

Details for the file tda_mapper-0.9.0.tar.gz.

File metadata

  • Download URL: tda_mapper-0.9.0.tar.gz
  • Upload date:
  • Size: 44.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for tda_mapper-0.9.0.tar.gz
Algorithm Hash digest
SHA256 0157748d19a7190fd8d294fc1510b5c55ef043aaddb4143fdf5edab0f1ccfd94
MD5 6bedb91c3034e79ca07a2fdd516629ff
BLAKE2b-256 954e09f1f982c958b5a36e9360baf855d3ae4eff1d57e9353f30096ae0bbeef6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tda_mapper-0.9.0.tar.gz:

Publisher: publish-pypi.yml on lucasimi/tda-mapper-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tda_mapper-0.9.0-py3-none-any.whl.

File metadata

  • Download URL: tda_mapper-0.9.0-py3-none-any.whl
  • Upload date:
  • Size: 42.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for tda_mapper-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9f3b0ed18a2a8382755eeb9c34df0ff9c33ea7d8cb39a866ed5c5cfec6047b09
MD5 c7fca178cd6b4d18d074c929b9d0bcb7
BLAKE2b-256 cb0fa589f215122163aa73f551cf5736ca15beb76cc15feb4ad1dad16f4c885b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tda_mapper-0.9.0-py3-none-any.whl:

Publisher: publish-pypi.yml on lucasimi/tda-mapper-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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