similar to: correlation between multiple adjacency matrix graphs

Displaying 20 results from an estimated 2000 matches similar to: "correlation between multiple adjacency matrix graphs"

2012 Nov 19
0
R SNA: Creating a adjacency matrix containing all actors but only values of a subset
1 down vote favorite my problem is the following: I am using the R SNA package for social network analysis. Lets say, my starting point is an edgelist with the following characteristics. Every row contains a firm name, the ID of a project they are involved and further characteristics, let's say the projects year. Firms can be in several projects, and one project can consist of a
2011 Aug 13
3
Adjacency Matrix help
I have created an adjacency matrix but have not been able to figure something out. I need to put zeros on the diagonal of the adjacency matrix. For instance, location (i,i) to equal 0. Please help. Thanks -- View this message in context: http://r.789695.n4.nabble.com/Adjacency-Matrix-help-tp3740946p3740946.html Sent from the R help mailing list archive at Nabble.com.
2010 Jul 08
2
hi... problems about adjacency matrix
Dear all, Hi, I have the problems about converting the matrix to adjacency matrix.Here's my example, a b c d e fa 1.0000000 0.4048823682 0.1228531 0.49046991 0.4945158868 0.307443317b 0.4048824 1.0000000000 0.4367475 0.96949219 0.0007378596 0.560747765c 0.1228531 0.4367474719 1.0000000 0.40037341 0.3157538204
2005 Mar 08
1
To convert an adjacency list model into a nested set model
Dear R-help I am wondering if somebody wrote some code to convert an adjacency list model into a nested set model. In principal I want to do the same as John Celko mentioned it here with SQL: http://groups.google.co.uk/groups?hl=en&lr=lang_en&selm=8j0n05%24n31%241 %40nnrp1.deja.com Assume you have a tree structure like this Albert / \ /
2008 Feb 27
1
how to convert a table to adjacency matrix used in social network analysis?
Hi Guys, Do you any one know how to convert a long format table to an adjacency matrix used in sna? The long table looks like p1 p2 counts a b 100 a c 200 a d 100 b c 80 b d 90 b e 100 c d 100 c e 40 d e 60 and I want to convert it to an adjacency matrix which can be used in sna? Any methods will be appreciated! btw, besides sna package, is there any better package can be used in social
2013 Feb 05
2
adjacency list to non-symmetric matrix
Dear R community, is there an easy way to convert an adjacency list (or a data-frame) to a non-symmetric matrix? The adjacency list has the following form: person group 1 Sam a 2 Sam b 3 Sam c 4 Greg a 5 Tom b 6 Tom c 7 Tom d 8 Mary b 9 Mary d I need the data in a matrix with persons as rows and groups as columns: a b c d Sam 1 1 1 0 Greg 1 0 0 0 Tom 0 1 1 1 Mary 0 1 0 1 I know that there
2011 Sep 25
4
Trouble creating and adjacency matrix
Hello all, I'm having trouble creating an adjacency matrix. Basically, I need to turn the following distance matrix into an adjacency matrix based on whether values are >1.5 or not. If they are >1.5, then the returned value should be 0. If they are =<1.5, then the returned value should be 1. DistanceMatrix: A B C D E [1,]
2006 Dec 05
4
incidence and adjacency matrix conversion
Dear all, how can I convert an m x n incidence matrix into an m x m adjacency matrix or an n x n adjacency matrix? The current matrix contains binary data, hence the new matrix would contain counts of common occurrences. Thank you for your help. Phil
2008 Mar 05
4
vertex labels in igraph from adjacency matrix
I am getting some unexpected results from some functions of igraph and it is possible that I am misinterpreting the vertex numbers. Eg., the max betweenness measure seems to be from a vertex that is not connected to a single other vertex. Below if my code snippet: require(igraph) my.graph <- graph.adjacency(adjmatrix = my.adj.matrix, mode=c("undirected")) most.between.vert <-
2006 Feb 18
2
Conversion to Adjacency Matrix
I have data in the following form: ID COUPON0 COUPON1 COUPON2 COUPON3 1 1 1000 1001 1002 2 2 NA NA NA 3 1000 1003 NA 1004 4 1001 NA 1005 NA 5 1002 NA NA NA 12 1003 NA NA 1006 7 1005 NA NA NA 8 1004 1007 NA NA 9 1006 NA NA NA 26
2012 Feb 03
0
[LLVMdev] LLVM version with working Alpha backend
Hi Giang, Given that the community deprecated the Alpha backend, I'm doubtful anyone would be able to point you in the right direction. Have you iteratively tried the difference versions of LLVM (i.e., 2.9, 2.8, 2.7 on down the line)? Chad On Feb 3, 2012, at 12:34 PM, Giang Hoang <ghoang84 at gmail.com> wrote: > Hi, > > For my work, I want to use LLVM to compile SPEC 2k
2010 Oct 16
1
[LLVMdev] llvm-gcc as Alpha cross compiler
Thanks Andrew. I would like to clarify what I tried to do. I want to use llvm-gcc on x86 linux to compile C programs into Alpha binary. Giang On Fri, Oct 15, 2010 at 5:41 PM, Andrew Lenharth <andrewl at lenharth.org>wrote: > llvm-gcc doesn't not compile *on* alpha (128bit fp and int issues). I > haven't tried it as a cross compiler. > > Andrew > > On Fri, Oct
2010 Oct 15
0
[LLVMdev] llvm-gcc as Alpha cross compiler
llvm-gcc doesn't not compile *on* alpha (128bit fp and int issues). I haven't tried it as a cross compiler. Andrew On Fri, Oct 15, 2010 at 5:19 PM, Giang Hoang <ghoang84 at gmail.com> wrote: > Hi, > > I wonder if anyone has been able to successfully build llvm-gcc as an Alpha > cross compiler? > > I have tried many different combinations of flags and gcc
2012 Feb 03
2
[LLVMdev] LLVM version with working Alpha backend
Hi, For my work, I want to use LLVM to compile SPEC 2k for Alpha. Since Alpha support has been dropped, I tried using version 2.8, but it is quite buggy, probably because the Alpha backend has not been maintained. I was wondering if there is an earlier version where the Alpha backend is stable enough to compile SPEC 2k? For my purpose, I do not need the most advanced optimizations, so an
2004 Feb 04
5
Date Time Conversion problems...
At one time (version 1.7), the code below used to work for converting and extracting based on the Date Time. In version 1.8.1, something changed I know, but I cannot for the life of me figure out what... Data: UserName,RequestDate,PO,OrderDate,ExpDelivDate,Vendor,Total "Woody, Jim",12/19/2002,AP15063,1/7/2003,2/10/2003,Ames ,8570 "Harrold,
2010 Oct 15
2
[LLVMdev] llvm-gcc as Alpha cross compiler
Hi, I wonder if anyone has been able to successfully build llvm-gcc as an Alpha cross compiler? I have tried many different combinations of flags and gcc compiler, but have not been able to build successfully. Currently, this is the command that I used to build on Ubuntu 10.10: ../llvm-gcc-4.2-2.8.source/configure --enable-llvm=/home/ghoang/research/llvm/llvm-objects --enable-languages=c,c++
2007 Aug 16
3
Re: Adding a new virtual block device to a guest
Hi! It seems i already have udev... mydom0:~# apt-get install udev Reading package lists... Done Building dependency tree... Done udev is already the newest version. mydom0:~# I notice when i mkfs -ext 3 my new vbd with dd, it says it''s not a block device.. i have a feeling im doing this wrong. can you suggest steps in: 1. creating a new block device 2. preparing it (mkfs) 3.
2000 Sep 21
2
adjacency matrix
Hi all; I have two vectors A=c(5,2,2,3,3,2) and B=c(2,3,4,5,6,1,3,2,4,3,1,5,1,4,6,1,4) and I want to make the following matrix using the information I have from the above vectors. 0 1 1 1 1 1 1 0 1 0 0 0 0 1 0 1 0 0 1 0 1 0 1 0 1 0 0 1 0 1 1 0 0 1 0 0 so the first vector says that I have 6 elements therefor I have to make a 6 by 6 matrix and then I have to read 5 elements from the
2013 Mar 12
2
big edge list to adjacency matrix
I have huge list of edges with weights. a1 b1 w1 a2 b2 w2 a3 b3 w3 a1 b1 w4 a3 b1 w5 I have to convert it into 2 dim matrix b1 b2 b3 a1 max(w1,w4) 0 0 a2 0 w2 0 a3 w5 0 w3 if edges repeated take the maximum weights. How do this efficiently without using for loop? Any idea. thanks Avi [[alternative
2006 Mar 03
1
rsync set up problem
Hi, I downloaded rsync-2.6.7pre2 and ran the configure without problem. But 'make' showed a bunch of errors (see below). What do I need to do to correct this problem? Thanks. : : : config.status: creating shconfig config.status: creating config.h rsync 2.6.7pre2 configuration successful [03/02/06 16:58:31] docsguard-187 server/rsync-2.6.7pre2# make gcc -I. -I. -g -O2