Having trouble with a graph that contains 1000+ nodes. For some reason, no matter what format it is rendered to, it comes out completely blank. Trying to have the graph rendered with the following:
in file:
strict digraph G {
layout=dot;
overlap=false;
splines=true;
pack=true;
start="random";
sep=0.1;
edge[len=1];
node[shape=oval];
in cmd:
dot -Goverlap_scaling=-10 -Goverlap=prism -Tpdf sample.dot > sample.pdf
Any help would be appreciated, thanks