math.pow10() function
math.pow10()
returns 10**n, the base-10 exponential of n
.
Function type signature
(n: int) => float
Parameters
n
(Required) Exponent value.
Examples
Return the base-10 exponential of n
import "math"
math.pow10(n: 3)// 1000.0
Use math.pow10 in map
import "math"
import "sampledata"
sampledata.int()
|> map(fn: (r) => ({r with _value: math.pow10(n: r._value)}))
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:
Customers with an annual or support contract can contact InfluxData Support.