Top "Subgraph" questions

Use this tag for questions related to a Subgraph, a part of a larger graph.

GraphViz - How to connect subgraphs?

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 subgraph
Finding all disconnected subgraphs in a graph

I have a graph which contains an unknown number of disconnected subgraphs. What's a good algorithm (or Java library) to …

java algorithm graph disconnected subgraph
top-down subgraphs, left-right inside subgraphs

I'd like to have my graph looks like this: But I can only get this: The problem is, rankdir does …

graphviz subgraph
List of C++ libraries for Graph Theory

I'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 isomorphism
Find all complete sub-graphs within a graph

Is there a known algorithm or method to find all complete sub-graphs within a graph? I have an undirected, unweighted …

language-agnostic graph-theory subgraph
Creating Subgraph using igraph in R

I need to obtain a subgraph of the seed nodes (the input list of nodes; file.txt) and their first …

r igraph subgraph
group nodes with subgraphs

I'd like to group some nodes with the following code digraph dataflow { subgraph pipeline { relations; synonyms; articles; } subgraph lucene { index; …

graphviz dot subgraph
Subgraph layout in graphviz

I have code to display two subgraphs: graph { rankdir=LR; subgraph cluster01 { label="t=0" a0 [label="A"]; a1 [label="B"]; …

graphviz rank subgraph
Graphviz: how to rotate a node (or a subgraph)?

I am trying to have a node (or a subgraph, enclosing a node - whichever is possible/easier) rotated, like …

rotation graphviz subgraph
How do I position the label of a graphviz subgraph cluster to be on the left?

How do I position the label for subgraph cluster to appear at it's left instead of being centered? digraph mygraph { …

graphviz subgraph