View source: R/make_standard.R
make_standard | R Documentation |
make_adjacency
into the edgynode standard matrix formatThis function takes an adjacency matrix as input and converts it into a standard form (based on the options provided).
make_standard(
adj,
max_value = 1,
split_by_margin = NULL,
no_negative = TRUE,
no_self_loops = TRUE
)
adj |
an adjacency matrix converted from a raw input matrix via |
max_value |
the maximum (positive) value that should exist in the
matrix; default is 1; setting this to |
no_negative |
whether there should be negative values or just their
absolute value (e.g. in the case of correlations); default is |
no_self_loops |
whether the values in the main diagonal of the
adjacency matrix should be 0; default is |
Ilias Moutsopoulos
make_adjacency
, make_symmetric
, make_binary
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.