logarithmicBins() function
The logarithmicBins()
function generates a list of exponentially separated floats.
It is a helper function meant to generate bin bounds for the
histogram()
function.
Output data type: Array of floats
logarithmicBins(
start:1.0,
factor: 2.0,
count: 10,
infinity: true,
)
Parameters
start
The first value in the returned bin list.
factor
The multiplier applied to each subsequent bin.
count
The number of bins to create.
infinity
When true
, adds an additional bin with a value of positive infinity.
Defaults to true
.
Examples
logarithmicBins(start: 1.0, factor: 2.0, count: 10, infinity: true)
// Generated list: [1, 2, 4, 8, 16, 32, 64, 128, 256, 512, +Inf]
Was this page helpful?
Thank you for your feedback!
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for Flux and this documentation. To find support, use the following resources:
InfluxDB Cloud customers can contact InfluxData Support.