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.5.tar.gz
(22.6 kB
view details)
File details
Details for the file graphtools-0.1.5.tar.gz
.
File metadata
- Download URL: graphtools-0.1.5.tar.gz
- Upload date:
- Size: 22.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28520c17c5a226a3cf1a6376eb8e409fa5721e89d1880496210c1c717bf77548 |
|
MD5 | fc973f5d1dae60e58e1e374237803c59 |
|
BLAKE2b-256 | 00826c58f5765292be351f06bf55ecdbb405b8b80978903af0d018411783d406 |