graphtools
Project description
Tools for building and manipulating graphs in Python.
Installation
graphtools is available on pip. Install by running the following in a terminal:
pip install --user graphtools
Usage example
The graphtools.Graph class provides an all-in-one interface for k-nearest neighbors, mutual nearest neighbors, exact (pairwise distances) and landmark graphs.
Use it as follows:
from sklearn import datasets import graphtools digits = datasets.load_digits() G = graphtools.Graph(digits['data']) K = G.kernel P = G.diff_op G = graphtools.Graph(digits['data'], n_landmark=300) L = G.landmark_op
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
graphtools-0.1.3.tar.gz
(20.3 kB
view details)
File details
Details for the file graphtools-0.1.3.tar.gz
.
File metadata
- Download URL: graphtools-0.1.3.tar.gz
- Upload date:
- Size: 20.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4fa0c2ce3c54b0b3a91a759660147e4080fad3ae327c2538e936529b964ac5db |
|
MD5 | 956b055bc71ec6331093b1443306308a |
|
BLAKE2b-256 | 8de1cb343bb7fde6f396d21c62339c5680d317c83d68aef6072bff6c50bedd0c |