Skip to content
Back to formatted view

Raw Message

Message-ID: <CAP6isFpV_6d354NP3N-VgNaYsyDi6e-qOX=6gaKxBTUTT=Q2iA@mail.gmail.com>
Date: 2017-06-20T18:15:23Z
From: Zahra Tofighi
Subject: Problem with shortestPath in igraph and qgraph

hello,

I have a graph and i use qgraph package to calculate centrality parameters.
Now I want to know the maximum value of shortest path for each vertex with
discarding the Inf value in short pathes. For this I use the
ShortestPathLengths of centrality function in qgraph. but when I want to
get the maximum the result is wrong. here is my code:

cen<-centrality(Q)

tmp3<-cen$ShortestPathLengths
shp<-matrix(1:ncol(tmp3),ncol(tmp3),1)for(i in ncol(tmp3)){
shp[i,]=max(tmp3[i,][tmp3[i,]!=Inf)}

when I display the valu of shp the result is same as initial value (form
one to ncol). I also test with shortest.paths function. the result was
same. what is my wrong?

	[[alternative HTML version deleted]]