logarithmicBins()函数
logarithmicBins()
生成一个以指数间隔的浮点数列表。
使用linearBins()
为histogram()
生成分箱边界。
函数类型签名
(count: int, factor: float, start: float, ?infinity: bool) => [float]
参数
start
(必需) 列表中返回的第一个值。
factor
(必需) 应用于后续值的乘数。
count
(必需) 返回的值数。
infinity
在列表末尾包含一个无限值。默认为true
。
示例
生成一个指数增加的值列表
logarithmicBins(
start: 1.0,
factor: 2.0,
count: 10,
infinity: true,
)// Returns [1, 2, 4, 8, 16, 32, 64, 128, 256, 512, +Inf]
这个页面有帮助吗?
感谢您的反馈!