adjacencyList2Matrix | R Documentation |
Convert adjacency list to an adjacency matrix
adjacencyList2Matrix(lt, square = FALSE)
lt |
A data frame which contains adjacency list. |
square |
Should the returned matrix be a square matrix? |
set.seed(123)
df = data.frame(from = sample(letters, 10, replace = TRUE),
to = sample(letters, 10, replace = TRUE),
value = 1:10)
adjacencyList2Matrix(df)
adjacencyList2Matrix(df, square = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.