I am new in R and I am trying to plot a graph with different connections of political parties, though to account of the flow of money I am trying to make the vertices size be proportional to their finances. I have made an adjacency matrix that allowed me to draw my first network plot but trying to account for the size gives results where nodes are all over each other.
This is what I am currently using:
plot(my_second_network,
layout = layout.grid,
vertex.label=toupper(1:16),
vertex.size = flow1$Tt,
vertex.shape = "square",
vertex.color="white",
vertex.frame.color= "black",
vertex.label.color = "black",
vertex.label.family = "sans",
vertex.label.cex=1,
edge.width=2,
edge.color="black")