Attempt to create a valid degree sequence of length n using specified function sfunction(n,**kwds).
n: length of degree sequence = number of nodes
- sfunction: a function, called as “sfunction(n,**kwds)”,
that returns a list of n real or integer values.
- max_tries: max number of attempts at creating valid degree
sequence.
Repeatedly create a degree sequence by calling sfunction(n,**kwds) until achieving a valid degree sequence. If unsuccessful after max_tries attempts, raise an exception.
For examples of sfunctions that return sequences of random numbers, see networkx.Utils.
>>> from networkx.utils import uniform_sequence
>>> seq=nx.create_degree_sequence(10,uniform_sequence)