在看WGCNA的时候看到的一个术语. 先来看一个随机网络:没有中心节点,大部分节点都均匀的连在一起. 再看一下scale free network:大部分的连接都集中在少数的中心 如何检验一个网络是否是scale free network? A. Log-log plot of whole-network connectivity distribution. The x-axis shows the logarithm of whole network connectivity, y-axis
# -*- coding: cp936 -*- import random import networkx as nx from networkx.generators.classic import empty_graph def powerlaw_cluster_graph(n, m, p, seed=None): """Holme and Kim algorithm for growing graphs with powerlaw degree distribution
精度即数的有效数字个数 2.5的有效数字个数是2,但是053.2的有效数字个数是3 标度是小数点的位数 例如numeric(2,1),即这个数必须是两位,并且小数后面最多有一位,多出来的小数会被四舍五入 可以很容易的确定出numeric的范围,即-10(精度-标度)到10(精度-标度)次方之间,不包括两头 create table test (num numeric(2,1)); insert into test values (2.2); num ----- 2.2 insert into t