is_adjacency | R Documentation |
Tests whether a matrix is an adjacency in edgynode format.
is_adjacency(x)
x |
a |
The result of the test (TRUE/FALSE)
Ilias Moutsopoulos and Hajk-Georg Drost
make_adjacency
, assert_adjacency
# test with an already clean adjacency matrix
edgynode::is_adjacency(edgynode::adjacency_clean_test_3)
# look at raw matrix
edgynode::adjacency_matrix_test_3
# convert raw matrix into a edgynode adjacency matrix
clean_matrix <- edgynode::make_adjacency(edgynode::adjacency_matrix_test_3)
# test converted matrix
edgynode::is_adjacency(clean_matrix)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.