I'd like to group some nodes with the following code
digraph dataflow { subgraph pipeline { relations; synonyms; articles; } subgraph lucene { index; search; } training_data - > index; relations - > search; synonyms - > index; articles - > index; training_data - > evaluation; }
But dot doesn't care about the subgraphs:
Try prefixing your subgraphs with 'cluster_':
digraph dataflow { subgraph cluster_pipeline { relations; synonyms; articles; } subgraph cluster_lucene { index; search; } training_data -> index; relations -> search; synonyms -> index; articles -> index; training_data -> evaluation; }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With