Skip to content
Prev 369917 / 398503 Next

Problem with shortestPath in igraph and qgraph

I hope this new post be according to  your tips.
My database is big so i upload it in Dropbox and here is the link to
download it:
https://www.dropbox.com/pri/get/cognitiveEdges.csv?_subject_uid=680429290&w=AADQFwqcK-l66BiR4hcJayEc8dFbn0YNHdzeJ7ErqiKr1g

and here is code to run in R studio (3.4.0) :
 rm(list = ls())
library("igraph")
library("qgraph")
library("data.table")
links <- read.csv("C:/result21/CognitiveEdges.csv", header=T, as.is=T) #
Address of file
nrow(links); nrow(unique(links[,c("From", "To")]))
nrow(unique(links[,c("From", "To")]))
net <- graph_from_data_frame(d=links, directed=T)
Q<-qgraph(as_adjacency_matrix(net))
cen<-centrality(Q)
 tmp3 <- shortest.paths(net,V(net),V(net))
cen<-centrality(Q)
tmp3<-cen$ShortestPathLengths
re<-function(tmp3){
shp<-matrix(1:ncol(tmp3),ncol(tmp3),1)
for(i in ncol(tmp3))
{
shp[i,]<-max(tmp3[i,][tmp3[i,]!=Inf])}
return(shp)
}
mm<-re(tmp3)### my problem is here Line 21
max(tmp3[1,][tmp3[1,]!=Inf]) # line 22

my problem is at line 21. Why the result of mm[1,] is not same as line 22??
for other elements of mm also i didn't get the true result.
With Regards,

On Wed, Jun 21, 2017 at 9:35 AM, Jeff Newmiller <jdnewmil at dcn.davis.ca.us>
wrote: