Use this tag for questions related to a Subgraph, a part of a larger graph.
In the DOT language for GraphViz, I'm trying to represent a dependency diagram. I need to be able to have …
graphics graphviz dot directed-graph subgraphI have a graph which contains an unknown number of disconnected subgraphs. What's a good algorithm (or Java library) to …
java algorithm graph disconnected subgraphI'd like to have my graph looks like this: But I can only get this: The problem is, rankdir does …
graphviz subgraphI'm going to start a scientific project about automata and graph theory, and I'm searching for a graph library that …
c++ graph-theory subgraph isomorphismIs there a known algorithm or method to find all complete sub-graphs within a graph? I have an undirected, unweighted …
language-agnostic graph-theory subgraphI need to obtain a subgraph of the seed nodes (the input list of nodes; file.txt) and their first …
r igraph subgraphI'd like to group some nodes with the following code digraph dataflow { subgraph pipeline { relations; synonyms; articles; } subgraph lucene { index; …
graphviz dot subgraphI have code to display two subgraphs: graph { rankdir=LR; subgraph cluster01 { label="t=0" a0 [label="A"]; a1 [label="B"]; …
graphviz rank subgraphI am trying to have a node (or a subgraph, enclosing a node - whichever is possible/easier) rotated, like …
rotation graphviz subgraphHow do I position the label for subgraph cluster to appear at it's left instead of being centered? digraph mygraph { …
graphviz subgraph