random_shell_graph#
- random_shell_graph(constructor, seed=None)[source]#
返回一个给定构造函数的随机壳层图。
- Parameters:
- constructor由三元组组成的列表
表示壳层的参数,从中心壳层开始。列表中的每个元素必须是形式为
(n, m, d)
的三元组,其中n
是壳层中的节点数,m
是壳层中的边数,d
是壳层间(下一个)边与壳层内边的比率。如果d
为零,则没有壳层内边;如果d
为1,则所有可能的壳层内边都会存在。- seed整数,random_state,或 None(默认)
随机数生成状态的指示器。 参见 随机性 。
Examples
>>> constructor = [(10, 20, 0.8), (20, 40, 0.8)] >>> G = nx.random_shell_graph(constructor)