recode: Recodes an edgelist such that ids go from 1 to n
Description
Recodes an edgelist such that ids go from 1 to n
Usage
recode(data, ...)
## S3 method for class 'data.frame':
recode(data, ...)
## S3 method for class 'matrix':
recode(data, ...)
Arguments
data
Edgelist as either a matrix or dataframe with ego and alter
...
Further arguments for the method (ignored)
Value
A recoded edgelist as a two-column matrix/data.frame depending
on the class of data. The output includes an attribute called "recode"
which contains a two column data.frame providing a mapping between the
previous code and the new code (see the examples)
Details
Required for using most of the package's functions, as ids are used
as a reference for accessing elements in adjacency matrices.