linearBins() 函数
linearBins()
生成一个线性分隔的浮点数值列表。
使用 linearBins()
生成 histogram()
的分箱边界。
函数类型签名
(count: int, start: float, width: float, ?infinity: bool) => [float]
参数
start
(必需) 列表中返回的第一个值。
width
(必需) 后续值之间的距离。
count
(必需) 要返回的值的数量。
infinity
在列表末尾包含一个无限值。默认为 true
。
示例
生成一个线性增加的值列表
linearBins(
start: 0.0,
width: 10.0,
count: 10,
)// Returns [0, 10, 20, 30, 40, 50, 60, 70, 80, 90, +Inf]
这个页面有帮助吗?
感谢您的反馈!