content/flux/v0/stdlib/universe/linearbins.md
linearBins() generates a list of linearly separated float values.
Use linearBins() to generate bin bounds for histogram().
(count: int, start: float, width: float, ?infinity: bool) => [float]
{{% caption %}} For more information, see Function type signatures. {{% /caption %}}
({{< req >}}) First value to return in the list.
({{< req >}}) Distance between subsequent values.
({{< req >}}) Number of values to return.
Include an infinite value at the end of the list. Default is true.
linearBins(
start: 0.0,
width: 10.0,
count: 10,
)// Returns [0, 10, 20, 30, 40, 50, 60, 70, 80, 90, +Inf]