mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
1f9c7ae9c3
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> Co-authored-by: Lena Pastwa <126529524+acuteenvy@users.noreply.github.com>
678 B
678 B
cluster
Find clusters in a graph and augment the graph with this information. More information: https://graphviz.org/pdf/cluster.1.pdf.
- Generate clusters that optimize modularity and print the result to
stdout:
cluster {{input.gv}}
- Specify a target number of [C]lusters (approximate) to generate (0 by default, meaning a number that approximately optimizes the modularity):
cluster -C {{5}} {{input.gv}}
- Use a different [c]lustering method (0: modularity clustering, 1: modularity quality):
cluster -c {{0|1}} {{input.gv}}
- Save the [o]utput to a file:
cluster -o {{output.gv}} {{input.gv}}
- Enable [v]erbose mode:
cluster -v {{input.gv}}