Skip to content

Commit c0c5699

Browse files
committed
graphviz API; parameter sensitivity analysis;
1 parent 2b61477 commit c0c5699

File tree

9 files changed

+9246
-0
lines changed

9 files changed

+9246
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,15 @@ Supported Tasks
174174
All three approaches support several downstream tasks.
175175

176176
```python
177+
# Dimensionality reduction
178+
# - Creates fitted UMAP or TSNE models from the computed manifold graph.
179+
projector = model.umap(n_components=2) # or
180+
projector = model.tsne(n_components=2)
181+
182+
# Graph layouts
183+
# - Computes a 2D graph layout using (py)graphviz and networkx.
184+
embedding = model.graphviz_layout(prog="sfdp")
185+
177186
# HDBSCAN or HBCC clusters
178187
# - Creates a fitted HDBSCAN or HBCC model from the computed manifold graph.
179188
# - Computes mutual-reachability from the model's number of neighbors.

0 commit comments

Comments
 (0)