类文档

将幂律拟合到样本向量的结果

示例

>>> result = power_law_fit([1, 2, 3, 4, 5, 6])
>>> result                   # doctest:+ELLIPSIS
FittedPowerLaw(continuous=False, alpha=2.42..., xmin=3.0, L=-7.54..., D=0.21..., p=0.993...)
>>> print(result)            # doctest:+ELLIPSIS
Fitted power-law distribution on discrete data
<BLANKLINE>
Exponent (alpha)  = 2.42...
Cutoff (xmin)     = 3.000000
<BLANKLINE>
Log-likelihood    = -7.54...
<BLANKLINE>
H0: data was drawn from the fitted distribution
<BLANKLINE>
KS test statistic = 0.21...
p-value           = 0.993...
<BLANKLINE>
H0 could not be rejected at significance level 0.05
>>> result.alpha             # doctest:+ELLIPSIS
2.42...
>>> result.xmin
3.0
>>> result.continuous
False
方法 __init__ 未文档化
方法 __repr__ 未文档化
方法 __str__ 未文档化
方法 summary 返回幂律拟合的摘要。
实例变量 alpha 未文档化
实例变量 continuous 未文档化
实例变量 D 未文档化
实例变量 L 未文档化
实例变量 p 未文档化
实例变量 xmin 未文档化
def __init__(self, continuous, alpha, xmin, L, D, p): (来源)

未文档化

def __repr__(self): (来源)

未文档化

def __str__(self): (来源)

未文档化

def summary(self, significance=0.05): (来源)

返回幂律拟合的摘要。

参数
显著性用于判断输入数据是否可能来自拟合分布的 Kolmogorov-Smirnov 检验的显著性水平
返回
摘要字符串

未文档化

continuous = (来源)

未文档化

未文档化

未文档化

未文档化

未文档化