用法:
dask.array.random.logistic(loc=0.0, scale=1.0, size=None, chunks='auto', **kwargs)
从逻辑分布中抽取样本。
此文档字符串是从 numpy.random.mtrand.RandomState.logistic 复制的。
可能存在与 Dask 版本的一些不一致之处。
样本是从具有指定参数、loc(位置或平均值,也是中位数)和尺度 (>0) 的逻辑分布中抽取的。
注意
新代码应改为使用
default_rng()
实例的logistic
方法;请参阅快速入门。- loc:float 或 数组 的浮点数,可选
分布参数。默认值为 0。
- scale:float 或 数组 的浮点数,可选
分布参数。必须是非负数。默认值为 1。
- size:int 或整数元组,可选
输出形状。例如,如果给定的形状是
(m, n, k)
,则绘制m * n * k
样本。如果 size 为None
(默认),如果loc
和scale
都是标量,则返回单个值。否则,将抽取np.broadcast(loc, scale).size
样本。
- out:ndarray 或标量
从参数化逻辑分布中抽取样本。
参数:
返回:
注意:
Logistic 分布的概率密度为
其中 = 位置和 = 比例。
Logistic 分布用于极值问题,其中它可以作为 Gumbel 分布的混合,在流行病学中,以及被世界国际象棋联合会 (FIDE) 用于 Elo 排名系统中,假设每个玩家的表现是逻辑分布的随机变量。
参考:
- 1
赖斯,R.-D。和 Thomas M. (2001),“来自保险、金融、水文和其他领域的极值统计分析”,巴塞尔 Birkhauser Verlag,第 132-133 页。
- 2
Weisstein, Eric W. “物流分布”。来自MathWorld-A Wolfram Web 资源。http://mathworld.wolfram.com/LogisticDistribution.html
- 3
维基百科,“Logistic-distribution”,https://en.wikipedia.org/wiki/Logistic_distribution
例子:
从分布中抽取样本:
>>> loc, scale = 10, 1 >>> s = np.random.logistic(loc, scale, 10000) >>> import matplotlib.pyplot as plt >>> count, bins, ignored = plt.hist(s, bins=50)
# 针对分布作图
>>> def logist(x, loc, scale): ... return np.exp((loc-x)/scale)/(scale*(1+np.exp((loc-x)/scale))**2) >>> lgst_val = logist(bins, loc, scale) >>> plt.plot(bins, lgst_val * count.max() / lgst_val.max()) >>> plt.show()
相关用法
- Python dask.array.random.logseries用法及代码示例
- Python dask.array.random.lognormal用法及代码示例
- Python dask.array.random.laplace用法及代码示例
- Python dask.array.random.weibull用法及代码示例
- Python dask.array.random.geometric用法及代码示例
- Python dask.array.random.standard_cauchy用法及代码示例
- Python dask.array.random.gumbel用法及代码示例
- Python dask.array.random.standard_t用法及代码示例
- Python dask.array.random.noncentral_chisquare用法及代码示例
- Python dask.array.random.poisson用法及代码示例
- Python dask.array.random.random_sample用法及代码示例
- Python dask.array.random.gamma用法及代码示例
- Python dask.array.random.normal用法及代码示例
- Python dask.array.random.uniform用法及代码示例
- Python dask.array.random.hypergeometric用法及代码示例
- Python dask.array.random.pareto用法及代码示例
- Python dask.array.random.random用法及代码示例
- Python dask.array.random.standard_normal用法及代码示例
- Python dask.array.random.standard_gamma用法及代码示例
- Python dask.array.random.triangular用法及代码示例
- Python dask.array.random.binomial用法及代码示例
- Python dask.array.random.permutation用法及代码示例
- Python dask.array.random.choice用法及代码示例
- Python dask.array.random.standard_exponential用法及代码示例
- Python dask.array.random.chisquare用法及代码示例
注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 dask.array.random.logistic。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。