lowestAverage() function
lowestAverage()
calculates the average of each input table and returns the lowest
n
averages.
Note: lowestAverage()
drops empty tables.
Function type signature
(<-tables: stream[A], n: int, ?column: string, ?groupColumns: [string]) => stream[B] where A: Record, B: Record
Parameters
n
(Required) Number of records to return.
column
Column to evaluate. Default is _value
.
groupColumns
List of columns to group by. Default is []
.
tables
Input data. Default is piped-forward data (<-
).
Examples
Return the lowest table average from a stream of tables
import "sampledata"
sampledata.int()
|> lowestAverage(n: 1, groupColumns: ["tag"])
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.