It would help dot when laying out RAM graphs if a line like this was added to the output of omxGraphviz
{ rank = same; visual ;cubes ;paper; general ; paragrap; sentence; numeric;series; arithmet}
i.e., {rank=same;
}
rank could also be max to force the measured boxes to the bottom of the graph
#1
Log in or register to post comments
#2
require(R.utils)
reassignInPackage("writeDotFile", pkgName="OpenMx", my.writeDotFile);
rank added using
rankString <- paste(graph@manifestVars, collapse="; ")
rankString <-paste("{ rank = max;", rankString, "}", collapse="") # force manifests to bottom of graph
outputLines <-append(outputLines, rankString)
Also added some comments to the output .dot file, i.e.,
outputLines <-append(outputLines, "/* Manifest Variables*/")
Log in or register to post comments
#3
Log in or register to post comments
#4
Log in or register to post comments
#5
Log in or register to post comments