Displaying 2 results from an estimated 2 matches for "edgedata".
Did you mean:
diedata
2006 Aug 28
1
Rgraphviz - neato layout - edge weights do not have an effect
...f
edge weight on the layout. In the
http://www.graphviz.org/Documentation/neatoguide.pdf the attribute "len"
is another parameter of the neato layout.
set.seed(31)
V=letters[1:5]
g2=randomEGraph(V,0.5)
plot(g2,"neato",main="All weights 1")
# change and edge weight
edgeData(g2, from = "d", to = "e", attr = "weight") <- 20
plot(g2,"neato",main="Nothing changed!")
#try out length attribute change
edgeDataDefaults(g2,"len")=1
edgeData(g2, from = "d", to = "e", attr = "len") <...
2009 Jun 24
0
Matrix vignette error in June 24 RC
..... OK
* checking for unstated dependencies in R code ... OK
* checking S3 generic/method consistency ... OK
* checking replacement functions ... OK
* checking foreign function calls ... OK
* checking R code for possible problems ... NOTE
graph.has.weights: no visible global function definition for
?edgeDataDefaults?
graph.wgtMatrix: no visible global function definition for ?numEdges?
graph.wgtMatrix: no visible global function definition for ?nodes?
graph.wgtMatrix: no visible global function definition for
?edgeDataDefaults?
graph.wgtMatrix: no visible global function definition for ?edgeData?
Tsp2g...