Manipulate[ M = Graph[{n},{e}, VertexLabeling -> True, DirectedEdges -> True], {n, 10, 25, 1}, {e, 25,50 ,1}]
Im trying to make an interactive graph for a scale of PageRank.. What can I do?
Unless you meant something like this:
Manipulate[ GraphPlot[{n -> e}, VertexLabeling -> True, DirectedEdges -> True], {n, 10, 25, 1}, {e, 25, 50, 1}]
According to the documentation, the edge of a graph should not be a single number. You must give a starting and ending point, like in GraphPlot[Table[n -> n + 1, {n, 10, 25, 1}]]
GraphPlot[Table[n -> n + 1, {n, 10, 25, 1}]]