Re: [R] Graph visualization

2009-09-11 Thread Martin Morgan
Arber Ngjela wrote: > Hello, > I am working with graph and adjacency matrix, the package 'graph' seems to be > appropriate for this. > An example in the package >> mat <- rbind(c(0, 0, 1, 1), > + c(0, 0, 1, 1), > + c(1, 1, 0, 1), > + c(1, 1, 1, 0)) >> rowna

Re: [R] Graph visualization

2009-09-11 Thread Steve Lianoglou
Hi, On Sep 11, 2009, at 8:22 AM, Arber Ngjela wrote: Hello, I am working with graph and adjacency matrix, the package 'graph' seems to be appropriate for this. An example in the package mat <- rbind(c(0, 0, 1, 1), + c(0, 0, 1, 1), + c(1, 1, 0, 1), + c

[R] Graph visualization

2009-09-11 Thread Arber Ngjela
Hello, I am working with graph and adjacency matrix, the package 'graph' seems to be appropriate for this. An example in the package > mat <- rbind(c(0, 0, 1, 1), + c(0, 0, 1, 1), + c(1, 1, 0, 1), + c(1, 1, 1, 0)) > rownames(mat) <- colnames(mat) <- letters