Displaying 2 results from an estimated 2 matches for "arrowsize".
Did you mean:
arraysize
2012 Mar 27
2
drawing the graph with many nodes
...est.matrix<-test.matrix[,!(names(test.matrix) %in% drops)]
test.matrix
test.matrix<-data.matrix(test.matrix)
am.graph<-new("graphAM", adjMat=test.matrix, edgemode="directed")
am.graph
plot(am.graph, attrs = list(node = list(fillcolor = "lightblue"),edge =
list(arrowsize=0.5)))
The file testgephi.csv is following.
"","1","2","3","4","5"
"1",393,55,66,44,88
"2",44,23,47,57,89
"3",57,87,98,456,43
"4",77,767,86,32,77
"5",43,88,23,76,46
In the example grap...
2012 Jun 04
1
Plotting with Rgraphviz
...<-new("graphAM", adjMat=test.matrix, edgemode="directed")
> am.graph
A graphAM graph with directed edges
Number of Nodes = 6
Number of Edges = 9
> plot(am.graph, attrs = list(node = list(fillcolor = "lightblue"),
+ edge = list(arrowsize=0.5)))
There were 18 warnings (use warnings() to see them)
> warnings()
Warning messages:
1: In plot.xy(xy.coords(x, y), type = type, ...) :
"len" is not a graphical parameter
2: In plot.xy(xy.coords(x, y), type = type, ...) :
"edgemode" is not a graphical parameter
3: In...