Introduction
A Python source repository on GitHub. It provides functions for visualizing the outputs of Anchor in various ways.
What belongs in the repository?
Tip: It should include: Python scripts/packages for processing data produced by Anchor for visualization.
Warning: It should not include: Python scripts/packages for other purposes, or non-Python code.
Documentation
Documentation is automatically generated from master branch using Sphinx for public modules and classes.
Code Structure
- Each entry-point script is found in the top-level directory.
- Each top-level directory contains a package, to be loaded using
from packagename importstyle (see Coding Style).
Entry-point scripts
| Package | Description |
|---|---|
| histogram_plot.py | Plots / exports a histogram from the CSVs produced by an Anchor export. |
| visualize_features.py | Plots a lower-dimensionality visualization of features. |
Packages
| Package | Description |
|---|---|
| embeddings/ | Methods for loading features and determining labels. |
| projection/ | Methods for projecting a feature space to lower dimensionality. |
| visualize/ | Different schemes for visualizing features or other types of data. |