python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to determine number of vertices per cluster in R with igraph
normaly when I want to determine the number of vertices for a graph I only need to write in my script :
library(igraph)
vcount('name of your graph')
And then I have it.
The thing is that I'm trying t...
Jonathan
Votes: 0
Answers: 3
R - finding the neighbors of neighbors and storing them in a unique adjacency matrix
A is an adjacency matrix stored as a matrix object:
#1 2 3 4 5 6 7 8 9
A <- matrix(data=c( 0,0,1,1,0,0,0,1,0, #1
0,0,0,0,1,0,0,0,0, #2
1...
J.Q
Votes: 0
Answers: 3
Is eigenvector centrality in igraph wrong?
I am trying to improve my understanding of eigenvector centrality. This overview from the University of Washington was very helpful, especially when read in conjunction with this R code. However, wh...
ZacharyST
Votes: 0
Answers: 1
Markov chain plot. How to hide probabilities in the plot
I have a huge matrix and I'm trying to visualize it better. I only found edge.arrow.size, vertex.size and layout to include in the details of the plot, but it still is hard to visualize
Daniel Cordeiro
Votes: 0
Answers: 1