igraph-help
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[igraph] Question about Eigenvector centrality


From: Mark Stam
Subject: [igraph] Question about Eigenvector centrality
Date: Sat, 11 Oct 2014 14:46:51 +0200

The results I get with Eigenvector centrality is like 2.532517e-02 , 1.162803e-04 etc.
I don't understand what this "e-xx" at the end of the result means.
Do I do something wrong ? Can somebody please explain ?

My R code:

g <- graph.data.frame(graph, directed = F)
sg <- simplify(g)
ev <- evcent(sg,directed = FALSE, scale = TRUE, weights = NULL, options = igraph.arpack.default)$vector
ev <- as.data.frame(as.table(ev))
names(ev) <- c('Name','Eigenvector centrality')
ev




reply via email to

[Prev in Thread] Current Thread [Next in Thread]