Adjacency matrix from which to build the motif
adjacency matrix.
motif_name
Motif used for the motif adjacency matrix.
motif_type
Type of motif adjacency matrix to build.
One of "func" or "struc".
mam_weight_type
The weighting scheme to use.
One of "unweighted", "mean" or "product".
mam_method
Which formulation to use.
One of "dense" or "sparse".
The sparse formulation avoids generating large dense matrices
so tends to be faster for large sparse graphs.
Details
Entry (i, j) of a motif adjacency matrix is the
sum of the weights of all motifs containing both
nodes i and j.
The motif is specified by name and the type of motif instance can be one of:
Functional: motifs should appear as subgraphs.
Structural: motifs should appear as induced subgraphs.
The weighting scheme can be one of:
Unweighted: the weight of any motif instance is one.
Mean: the weight of any motif instance
is the mean of its edge weights.
Product: the weight of any motif instance
is the product of its edge weights.