Randomization
This page describes functions contained in the randomization module used to generate of randomized controls of connectomes.
ER_model(adj, threads=8, seed=(None, None))
Creates an Erdos Renyi digraph.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adj
|
sparse matrix or 2d-array
|
Adjacency matrix |
required |
threads
|
int
|
Number of parallel threads to be used to generate model |
8
|
seed
|
pair of ints
|
Random seed to be used, if none is provided a seed is randomly selected |
(None, None)
|
Returns:
| Type | Description |
|---|---|
coo matrix
|
Matrix of the generated control |
Raises:
| Type | Description |
|---|---|
AssertionError
|
If adj is not square |
Source code in src/connalysis/randomization/randomization.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | |
ER_shuffle(adj, neuron_properties=[], shuffle_type='sparse')
Creates an Erdős Renyi digraph with exactly the same number of edges and weights as adj by shuffling the non-diagonla entries of adj.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adj
|
sparse matrix or 2d array
|
Base digraph for which the ER control is built. |
required |
shuffle_type
|
string
|
If |
'sparse'
|
seed
|
int
|
Random seed to be used, if none is provided a seed is randomly selected |
required |
Returns:
| Type | Description |
|---|---|
coo matrix
|
Matrix of the generated control |
Raises:
| Type | Description |
|---|---|
AssertionError
|
If adj is not not sparse and |
Source code in src/connalysis/randomization/randomization.py
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 | |
_seed_random_state(shuffler, seeder=np.random.seed)
Decorate a connectivity shuffler to seed it's random-state before execution.
It is expected that the generator can be seeded calling seeder(seed).
Source code in src/connalysis/randomization/randomization.py
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 | |
add_connections(adj, nc, seed=0, sparse_mode=True, max_iter=30)
Function add connections at random
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adj
|
matrix
|
Adjacency matrix of a directed network |
required |
nc
|
Number of connections to be added
|
|
required |
seed
|
int
|
Random seed to be used to selecte edges that will become reciprocal |
0
|
sparse_mode
|
If sparse_mode is |
True
|
Returns:
| Type | Description |
|---|---|
bool matrix
|
Digraph with nc more edges than adj |
Source code in src/connalysis/randomization/randomization.py
722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 | |
add_rc_connections(adj, n_rc, seed=0)
Function to turn a fixed amount of unidirectional connections of adj into reciprocal connections.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adj
|
sparse matrix
|
Adjacency matrix of a directed network |
required |
n_rc
|
Number of reciprocal connections to be added
|
|
required |
seed
|
int
|
Random seed to be used to selecte edges that will become reciprocal |
0
|
Returns:
| Type | Description |
|---|---|
matrix
|
Digraph with n_rc more edges than adj, all of which form reciprocal connections |
Source code in src/connalysis/randomization/randomization.py
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 | |
add_rc_connections_skeleta(adj, factors, dimensions=None, skeleta=None, threads=8, seed=0, return_skeleta=False)
Function to add reciprocal connections at random to adj on the skeleta of maximal simplices of adj
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adj
|
sparse matrix
|
Adjacency matrix of a directed network |
required |
factors
|
Factor by which to multiply the reciprocal connections on the |
required | |
dimensions
|
The dimensions at which to increase the number of reciprocal connections. If |
None
|
|
skeleta
|
Dictionary with keys f'dimension_{dim}' for dim in dimensions and values binary sparse sub-matrices of adj on which reciprocal connections will be added. |
None
|
|
threads
|
Number of threads on which to parallelize the skeleta computation if not pre-computed |
8
|
|
seed
|
int
|
Random seed to be used to selecte edges that will become reciprocal |
0
|
Returns:
| Type | Description |
|---|---|
(csc_matrix, dict)
|
Digraph with add reciprocal connections If return_skeleta=True it also returns the skeleta of maximal simplices of adj in the dimensions selected |
Source code in src/connalysis/randomization/randomization.py
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 | |
adjusted_ER(adj, seed=None)
Function to generate an Erdos Renyi model with adjusted bidirectional connections.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adj
|
csc_matrix
|
Adjacency matrix of a directed network. |
required |
seed
|
int
|
Random seed to be used |
None
|
Returns:
| Type | Description |
|---|---|
csc_matrix
|
Erdos Renyi shuffled control with additional reciprocal connections added at random to match the number of reciprocal connections of the original matrix. |
See Also
underlying_model : Function which returns a digraph with the same underlying undirected graph and same number of reciprocal connections
bishuffled_model : Function which returns a digraph with shuffled reciprocal connections
Source code in src/connalysis/randomization/randomization.py
537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 | |
bishuffled_model(adj, seed=None)
Function to generate a digraph with shuffled reciprocal connections
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adj
|
csc_matrix
|
Adjacency matrix of a directed network. |
required |
seed
|
int
|
Random seed to be used |
None
|
Returns:
| Type | Description |
|---|---|
csc_matrix
|
Digraph with shuffled reciprocal connections |
See Also
adjusted_ER : Function to generate an Erdos Renyi model with adjusted bidirectional connections
underlying_model : Function which returns a digraph with the same underlying undirected graph and same number of reciprocal connections
Source code in src/connalysis/randomization/randomization.py
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 | |
configuration_model(M, seed=None)
Function to generate the configuration control model, obtained by shuffling the row and column of coo format independently, to create new coo matrix, then removing any multiple edges and loops.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adj
|
coo - matrix
|
Adjacency matrix of a directed network. |
required |
seed
|
int
|
Random seed to be used |
None
|
Returns:
| Type | Description |
|---|---|
csr matrix
|
Configuration model control of adj |
See Also
run_SBM : Function which runs the stochastic block model
run_DD2 : Function which runs the 2nd distance dependent model
Source code in src/connalysis/randomization/randomization.py
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 | |
random_geometric_model(pts, pts_x=None, n_neighbors=None, dist_neighbors=None, n_pick=None, p_pick=None, scale_axes=None, directionality_fac=0.0, directionality_axis=None, distance_func=None, custom_w_out=None, custom_w_in=None, no_diag=True, mirror=False)
Generates a directed random geometric graph with optional modifications.
Nodes are given by embedded points in R^m with positions given by pts. Directed edges are
created probabilistically through two successive filtering stages:
- Candidate selection: For each node, select candidate neighbors either by:
a. Choosing the n_neighbors nearest neighbors in R^m, or
b. Choosing all nodes within distance dist_neighbors.
- Sub-selection: From the candidates, draw the final neighbors either by:
a. Sampling n_pick nodes uniformly at random, or
b. Retaining each candidate independently with probability p_pick.
The sub-selection step is optional, and can moreover be biased to give
asymmetric connectivity via directionality_fac and directionality_axis,
or via a custom distance_func.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pts
|
array
|
Shape: n x m, where n is the number of nodes and m the number of dimensions. The locations of the vertices that the random geometric graph is to be constructed on. |
required |
pts_x
|
array
|
Optional input for a second set of vertex locations. If provided, edges from |
None
|
n_neighbors
|
int
|
One way of specifying the potential set of partners for each node. If specified, the |
None
|
dist_neighbors
|
float
|
The other way to specify the potential set of partners. If specified, all vertices within that distance
of a node are potential partners for outgoing connections to be placed.
Either |
None
|
n_pick
|
int
|
One way of specifying the actual number of vertices that are connected from each node. If specified,
|
None
|
p_pick
|
float
|
The other way to specify the actual number of vertices that are connected from each node. If specified,
each candidate (see above) will be picked with probability |
None
|
scale_axes
|
array
|
Shape: (m, ), where m is the number of dimensions. One way of biasing which pairs are connected.
If used, distances along each dimension are scaled by the corresponding factor in |
None
|
directionality_axis
|
array
|
Shape: (m, ), where m is the number of dimensions. Another way of biasing which pairs are connected.
This introduces a directionality bias, i.e., connections are more likely if their direction aligns with
a specified vector and less likely if their direction is in the opposite direction of the vector. This
is calculated as the dot product of the direction vector of the potential connection with
|
None
|
directionality_fac
|
float
|
Must be between -1 and 1. This specifies how much the dot product calculated using |
0.0
|
distance_func
|
function
|
A function that is to be evaluated on pairwise distances of candidate pairs. Another way of biasing
which pairs are connected. The function takes a distance as input and returns a relative weight.
Note that these are relative weights that are scaled to fulfill the constraints on the number of
connections to pick given by |
None
|
custom_w_out
|
array
|
Shape: (n, ). For details, see below. |
None
|
custom_w_in
|
array
|
Shape: (n, ). custom_w_out and custom_w_in, if used, provide per-node biases for the selection of
connection from candidates. Simply, for all potential outgoing connections from vertex i, entry
custom_w_out[i] is used as a relative weight that is multiplied with any other potential weight.
Similarly for custom_w_in[i] for potential incoming connections.
Note that this does NOT affect the selection of candidates, parameterized by |
None
|
no_diag
|
bool
|
If set to False, connections from a vertex to itself are allowed to be placed. |
True
|
symmetrize
|
bool
|
If set to True, the output matrix is made symmetrical with the following strategy: If a connection
from vertex i to j exists, a connection is also placed from j to i if it does not already exist.
This is ignored without warning if |
required |
Returns:
| Type | Description |
|---|---|
csc_matrix
|
The adjacency matrix of an instance of a random geometric graph model. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If both n_neighbors and dist_neighbors is used |
ValueError
|
If neither n_neighbors nor dist_neighbors is used |
ValueError
|
If both n_pick and p_pick are used |
ValueError
|
If neither n_pick not p_pick are used |
ValueError
|
If p_pick is not between [0, 1] |
ValueError
|
If directionality_fac is not between [-1, 1] |
ValueError
|
If both directionality_axis and distance_func are used. |
Source code in src/connalysis/randomization/randomization.py
766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 | |
run_DD2(n, a, b, xyz, threads=8, seed=(None, None))
Creates a random digraph using the 2nd-order probability model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
Number of vertices |
required |
a
|
float
|
Coefficient of probability function |
required |
b
|
float
|
Absolute value of power of exponent in probability function |
required |
xyz
|
(n,3)-numpy array of floats
|
Co-ordinates of vertices in \(\mathbb{R}^3\) |
required |
threads
|
int
|
Number of parallel threads to be used |
8
|
seed
|
pair of ints
|
Random seed to be used, if none is provided a seed is randomly selected |
(None, None)
|
Returns:
| Type | Description |
|---|---|
coo matrix
|
Matrix of the generated control |
See Also
conn_prob_2nd_order_model :
The modelling function from which the parameters a and bcan be obtained.
Source code in src/connalysis/randomization/randomization.py
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | |
run_DD2_block(n, probs, blocks, xyz, threads, seed=(None, None))
Creates a random digraph using a combination of the stochastic block model and the 2nd order distance dependent model. Such that the probability of an edge is given by the distance dependent equation, but the parameters of that equation vary depending on the block of the source of the edge and block of the target.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
Number of vertices |
required |
probs
|
numpy array of floats
|
shape=(m,m,2) where m is the number of blocks. For source vertex i and target vertex j probs[i][j][0] is the coefficient of the distance dependent equation (value a) and probs[i][j][0] is the absolute value of power of exponent in the distance dependent equation (value b) |
required |
blocks
|
numpy array of ints
|
shape=(n,). The i'th entry is which block vertex i belongs to. |
required |
xyz
|
(n,3)-numpy array of floats
|
Co-ordinates of vertices in \(\mathbb{R}^3\) |
required |
threads
|
int
|
Number of parallel threads to be used |
required |
seed
|
pair of ints
|
Random seed to be used, if none is provided a seed is randomly selected |
(None, None)
|
Returns:
| Type | Description |
|---|---|
coo matrix
|
Matrix of the generated control |
Raises:
| Type | Description |
|---|---|
TypeError
|
If blocks contains non-integers |
See Also
run_DD2 : Function which runs the 2nd distance dependent model
run_SBM : Function which runs the stochastic block model
run_DD2_block_pre : Similar function that only accounts for the block of the source vertex
Source code in src/connalysis/randomization/randomization.py
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 | |
run_DD2_block_pre(n, probs, blocks, xyz, threads=8, seed=(None, None))
Creates a random digraph using a combination of the stochastic block model and the 2nd order distance dependent model. Such that the probability of an edge is given by the distance dependent equation, but the parameters of that equation vary depending on the block of the source of the edge.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
Number of vertices |
required |
probs
|
numpy array of floats
|
shape=(m,2) where m is the number of blocks. probs[i][0] is the coefficient of the distance dependent equation (value a) for source vertex i and probs[i][0] is the absolute value of power of exponent in the distance dependent equation (value b) |
required |
blocks
|
numpy array of ints
|
shape=(n,). The i'th entry is which block vertex i belongs to. |
required |
xyz
|
(n,3)-numpy array of floats
|
Co-ordinates of vertices in \(\mathbb{R}^3\) |
required |
threads
|
int
|
Number of parallel threads to be used |
8
|
seed
|
pair of ints
|
Random seed to be used, if none is provided a seed is randomly selected |
(None, None)
|
Returns:
| Type | Description |
|---|---|
coo matrix
|
Matrix of the generated control |
Raises:
| Type | Description |
|---|---|
TypeError
|
If blocks contains non-integers |
See Also
run_SBM: Function which runs the stochastic block model
run_DD2 : Function which runs the 2nd distance dependent model
run_DD2_block : Similar function that also accounts for the block of the target vertex
Source code in src/connalysis/randomization/randomization.py
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 | |
run_DD2_model(adj, node_properties, model_params_dd2=None, coord_names=['x', 'y', 'z'], threads=8, return_params=False, **config_dict)
Wrapper for fitting a model and generating a random control graph based on 2nd order distance dependence model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adj
|
sparse matrix or 2d-array
|
Adjacency matrix. If model_params_dd2 have already been computed, one can pass an empty matrix of the right size. |
required |
node_properties
|
DataFrame
|
DataFrame with information on the vertices of adj. It must have columns corresponding to the names of the coord_names to be used for distance computation (Default: ['x', 'y', 'z']). |
required |
model_params_dd2
|
DataFrame
|
Optional input of pre-computed model parameters as data frame with rows corresponding to seeds of model estimation (single row if subsampling is not used) and columns 'exp_model_scale' and 'exp_model_exponent' for the model parameters. See modelling.conn_prob_2nd_order_model for details. |
None
|
coord_names
|
list
|
Names of the coordinates (corresponding to columns in neuron properties table) based on which to compute Euclidean distance. Default: ['x', 'y', 'z'] |
['x', 'y', 'z']
|
threads
|
int
|
Number of parallel threads to be used. |
8
|
return_params
|
bool
|
If True, returns model_params_dd2 in addition to the generated control. |
False
|
config_dict
|
dict
|
Dictionary with 2nd order model building settings. See modelling.conn_prob_2nd_order_model for details. |
{}
|
Returns:
| Type | Description |
|---|---|
coo_matrix
|
Matrix of the generated control |
model_params_dd2
|
pandas.DataFrame with model parameters (optional; if return_params is True) |
See Also
conn_prob_2nd_order_model : The modelling function from which model_params_dd2 can be obtained.
Source code in src/connalysis/randomization/randomization.py
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | |
run_DD3(n, a1, b1, a2, b2, xyz, depths, threads=8, seed=(None, None))
Creates a random digraph using the 2nd-order probability model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
Number of vertices |
required |
a1
|
float
|
Coefficient of probability function for negative depth |
required |
b1
|
float
|
Absolute value of power of exponent in probability function for negative depth |
required |
a2
|
float
|
Coefficient of probability function for positive depth |
required |
b2
|
float
|
Absolute value of power of exponent in probability function for positive depth |
required |
xyz
|
(n,3)-numpy array of floats
|
Co-ordinates of vertices in \(\mathbb{R}^3\) |
required |
threads
|
int
|
Number of parallel threads to be used |
8
|
seed
|
pair of ints
|
Random seed to be used, if none is provided a seed is randomly selected |
(None, None)
|
Returns:
| Type | Description |
|---|---|
coo matrix
|
Matrix of the generated control |
See Also
conn_prob_3rd_order_model :
The modelling function from which the parameters a1/a2 and b1/b2can be obtained.
Source code in src/connalysis/randomization/randomization.py
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 | |
run_ER(n, p, threads=8, seed=(None, None))
Creates an Erdos Renyi digraph.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
Number of vertices |
required |
p
|
float
|
Edge probablity, must satisfy \(0 \le p \le 1\) |
required |
threads
|
int
|
Number of parallel threads to be used |
8
|
seed
|
pair of ints
|
Random seed to be used, if none is provided a seed is randomly selected |
(None, None)
|
Returns:
| Type | Description |
|---|---|
coo matrix
|
Matrix of the generated control |
Examples:
Setting n=3 and p=1 gives the complete digraph on 3 vertices:
>>> connalysis.randomization.run_ER(3,1)
{'row': [0, 0, 1, 1, 2, 2], 'col': [1, 2, 0, 2, 0, 1]}
Raises:
| Type | Description |
|---|---|
AssertionError
|
If p is not between 0 and 1 |
Source code in src/connalysis/randomization/randomization.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | |
run_SBM(n, probs, blocks, threads=8, seed=(None, None))
Creates a random digraph using the stochastic block model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
Number of vertices |
required |
probs
|
numpy array of floats
|
shape=(m,m) where m is the number of blocks. probs[i][j] is probability of an edge between block i and block j |
required |
blocks
|
numpy array of ints
|
shape=(n,). The i'th entry gives to which block vertex i belongs. |
required |
threads
|
int
|
Number of parallel threads to be used |
8
|
seed
|
pair of ints
|
Random seed to be used, if none is provided a seed is randomly selected |
(None, None)
|
Returns:
| Type | Description |
|---|---|
coo matrix
|
Matrix of the generated control |
Examples:
To create an SBM digraph on 4 vertices where the even to odd, or odd to even, vertices connect with high probablity (p=0.9) and the even to evens or odd to odds connect with low probability (p=0.1):
>>> connalysis.randomization.run_SBM(4,np.array([[0.1,0.9],[0.9,0.1]]),np.array([0,1,0,1]))
{'row': [0, 0, 1, 1, 1, 2, 2, 3, 3], 'col': [1, 3, 0, 2, 3, 1, 3, 0, 2]
Raises:
| Type | Description |
|---|---|
TypeError
|
If blocks contains non-integers |
References
[1] P.W. Holland, K. Laskey, S. Leinhardt, "Stochastic Blockmodels: First Steps", Soc Networks, 5-2, pp. 109-137, 1982
Source code in src/connalysis/randomization/randomization.py
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | |
stochastic_spread_model(M, n_steps=100, n_protected=0, q=10.0, tgt_level='individual', decay=1.0, sum_exclusion=True, return_history=False, node_can_spread=None)
Builds a stochastic spread graph. See https://doi.org/10.1101/2025.08.21.671478
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
M
|
matrix
|
Adjacency matrix of the underlying graph to spread on. If data type is float then the weight specifies the probability that the corresponding edge is crossed in a step. This weight / probability is further scaled if parameter q is specified. If data type is bool, then q must be specified. |
required |
n_steps
|
int
|
Maximum number of steps to evaluate. Should be picked |
100
|
n_protected
|
int
|
Number of initial steps to take with reduced stochasticity. For this number of steps the process for a given source node will spread to exactly the expected number of nodes instead of a randomly determined number. This avoids a large number of source nodes with zero out-degree. Set to 0 to not use this feature. |
0
|
q
|
float
|
Sets the expected number of nodes to spread to in each step. This is done by scaling the weights in M with weights dynamically determined in each step. If the data type of M is boolean, all entries in M are interpreted as 1.0 and q must be provided to determine "proper" weights. Set to None to not use this feature. |
10.0
|
tgt_level
|
str
|
One of "mean" or "individual". Specifies how parameter q is interpreted. If "individual", then one scaling factor per source node is calculated. If "mean", then one global factor is used. If q is set to None, then this is ignored. Using "mean" leads to more diverse degree distributions. |
'individual'
|
decay
|
float
|
Must be between 0 and 1. Paramter q is multiplied by this value after each step, reducing its value. This leads to shorter degree distributions. |
1.0
|
sum_exclusion
|
bool
|
Determines how the node exclusion rule is updated. If True, then once a candidate node has been rejected once from spread it can not be spread to in future steps. If False, then it is only excluded in the next step. |
True
|
return_history
|
bool
|
If True, then a second output is returned (see below). |
False
|
node_can_spread
|
iterable
|
Individual elements must be bool. If provided, it specifies which nodes "grow" outgoing connections
via the spreading mechanism. That is, for nodes where the corresponding entry of |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
full_instance |
matrix
|
Adjacency matrix of the output graph |
history |
list
|
Optional output only returned if |
Raises:
| Type | Description |
|---|---|
ValueError
|
If M contains any float weights > 1.0 |
ValueError
|
If M has bool data type and q is not used. |
ValueError
|
If tgt_level is not one of ["mean", "individual"] |
ValueError
|
If decay is not between [0, 1] |
ValueError
|
If node_can_spread is provided and its length does not match M |
Source code in src/connalysis/randomization/randomization.py
957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 | |
underlying_model(adj, seed: int = None)
Function to generate a digraph with the same underlying undirected graph as adj and the same number of reciprocal connections
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adj
|
csc_matrix
|
Adjacency matrix of a directed network. |
required |
seed
|
int
|
Random seed to be used |
None
|
Returns:
| Type | Description |
|---|---|
csc_matrix
|
Digraph with the same underlying undirected graph as adj and the same number of reciprocal connections |
See Also
adjusted_ER : Function to generate an Erdos Renyi model with adjusted bidirectional connections
bishuffled_model : Function which returns a digraph with shuffled reciprocal connections
Source code in src/connalysis/randomization/randomization.py
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 | |