Documentation

Work with floats

A float type represents a IEEE-754 64-bit floating-point number.

Type name: float

Float syntax

A float literal contains a decimal integer, a decimal point, and a decimal fraction.

0.0
123.4
-123.456
  • Copy
  • Fill window

Scientific notation

Flux does not support scientific notation float literal syntax. However, you can use float() to convert a scientific notation string into a float type.

1.23456e+78
// Error: error @1:8-1:9: undefined identifier e

float(v: "1.23456e+78")
// Returns 1.23456e+78 (float)
  • Copy
  • Fill window

Infinity

Flux does not support infinite float literal syntax (+Inf and -Inf). However, you can use float() to convert a infinite string into a float type.

+Inf
// Error: error @1:2-1:5: undefined identifier Inf

float(v: "+Inf")
// Returns +Inf (float)
  • Copy
  • Fill window

Not a Number

Flux does not support Not a Number (NaN) float literal syntax. However, you can use float() to convert a NaN string into a float type.

NaN
// Error: error @1:2-1:5: undefined identifier NaN

float(v: "NaN")
// Returns NaN (float)
  • Copy
  • Fill window

Convert data types to floats

Use the float() function to convert the following basic types to floats:

  • string: must be a numeric string or scientific notation
  • bool: true converts to 1.0, false converts to 0.0
  • int
  • uint
float(v: "1.23")
// 1.23

float(v: true)
// Returns 1.0

float(v: 123)
// Returns 123.0
  • Copy
  • Fill window

Convert columns to floats

Flux lets you iterate over rows in a stream of tables and convert columns to floats.

To convert the _value column to floats, use the toFloat() function.

toFloat() only operates on the _value column.

data
    |> toFloat()
  • Copy
  • Fill window
Given the following input data:
_time_value (int)
2021-01-01T00:00:00Z10
2021-01-01T02:00:00Z20
2021-01-01T03:00:00Z30
2021-01-01T04:00:00Z40
The example above returns:
_time_value (float)
2021-01-01T00:00:00Z10.0
2021-01-01T02:00:00Z20.0
2021-01-01T03:00:00Z30.0
2021-01-01T04:00:00Z40.0

To convert any column to floats:

  1. Use map() to iterate over and rewrite rows.
  2. Use float() to convert columns values to floats.
data
    |> map(fn: (r) => ({ r with index: float(v: r.index) }))
  • Copy
  • Fill window
Given the following input data:
_timeindex (int)
2021-01-01T00:00:00Z1
2021-01-01T02:00:00Z2
2021-01-01T03:00:00Z3
2021-01-01T04:00:00Z4
The example above returns:
_timeindex (float)
2021-01-01T00:00:00Z1.0
2021-01-01T02:00:00Z2.0
2021-01-01T03:00:00Z3.0
2021-01-01T04:00:00Z4.0

Operate on floats

Perform arithmetic operations on floats

To perform operations like adding, subtracting, multiplying, or dividing float values, use Flux arithmetic operators. Operands must be the same type.

1.23 + 45.67
// Returns 46.9

1.23 - 45.67
// Returns -44.440000000000005

float(v: "12345e+67") * 100.0
// Returns 1.2345000000000001e+73

144.0 / 12.0
// Returns 12.0

10.0 ^ 2.0
// Returns 100.0
  • Copy
  • Fill window

Inherent rounding errors in floating-point arithmetic

To fit an infinite number of real values into a finite number of bits, computer systems must round floating-point values in arithmetic operations. This results in small rounding errors in some operations.

Compare float values

Use Flux comparison operators to compare float values. Operands must be the same type. The operation returns a float.

12345600.0 == float(v: "1.23456e+07")
// Returns true

1.2 > -2.1
// Returns true
  • Copy
  • Fill window

Round float values

  1. Import the math package.
  2. Use math.round() to round to the nearest whole number.
import "math"

math.round(x: 1.54)
// Returns 2.0
  • Copy
  • Fill window

Flux math package

Use the math package to perform operations on float values.


Was this page helpful?

Thank you for your feedback!


The future of Flux

Flux is going into maintenance mode. You can continue using it as you currently are without any changes to your code.

Read more

InfluxDB 3 Core and Enterprise are now in Beta

InfluxDB 3 Core and Enterprise are now available for beta testing, available under MIT or Apache 2 license.

InfluxDB 3 Core is a high-speed, recent-data engine that collects and processes data in real-time, while persisting it to local disk or object storage. InfluxDB 3 Enterprise is a commercial product that builds on Core’s foundation, adding high availability, read replicas, enhanced security, and data compaction for faster queries. A free tier of InfluxDB 3 Enterprise will also be available for at-home, non-commercial use for hobbyists to get the full historical time series database set of capabilities.

For more information, check out: