| links.as.edgelist | R Documentation | 
This function takes as input a collection of links (as used/described by the model fitting functions in this package) and reproduces the links as a matrix.
links.as.edgelist(links)
| links | A list of links; the format of this is described in  | 
A two-column matrix where each row represents an edge. Note that the indices in this matrix are 0-indexed.
Jonathan Chang (slycoder@gmail.com)
rtm.collapsed.gibbs.sampler for the input format.
predictive.link.probability is a usage example of the output
of this function.
## Take the citations for the first few documents of Cora.
data(cora.cites)
links <- cora.cites[1:5]
links
## [[1]]
## [1] 484 389
## [[2]]
## integer(0)
## [[3]]
## integer(0)
## [[4]]
## [1] 177 416 533
## [[5]]
## [1] 153
links.as.edgelist(links)
##      [,1] [,2]
## [1,]    0  484
## [2,]    0  389
## [3,]    3  177
## [4,]    3  416
## [5,]    3  533
## [6,]    4  153
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.