Nothing
# List
in_edges <- list(
X = integer(0),
Y = c(1L),
Z = c(1L, 2L)
)
# Adjacency matrix
adj <- create_adj_matrix_from_list(in_edges)
# Convert back
in_edges_back <- create_list_from_adj_matrix(adj)
identical(in_edges_back, in_edges) # TRUE
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.