igraph-help
[Top][All Lists]
Advanced

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

Re: [igraph] Question about Eigenvector centrality


From: Gábor Csárdi
Subject: Re: [igraph] Question about Eigenvector centrality
Date: Sat, 11 Oct 2014 08:51:40 -0400

Hi,

it is called scientific notation, essentially 5.2e-2 means 5.2 times
10 to the power of -2: 0.052. See
http://en.wikipedia.org/wiki/Scientific_notation#E_notation

Btw. I cannot run your code, because I don't have your data. A
reproducible example needs data, see e.g.
http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example

Gabor

On Sat, Oct 11, 2014 at 8:46 AM, Mark Stam <address@hidden> wrote:
> 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
>
>
>
>
> _______________________________________________
> igraph-help mailing list
> address@hidden
> https://lists.nongnu.org/mailman/listinfo/igraph-help
>



reply via email to

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