stddev() function
stddev()
returns the standard deviation of non-null values in a specified column.
Function type signature
(<-tables: stream[A], ?column: string, ?mode: string) => stream[B] where A: Record, B: Record
Parameters
column
Column to operate on. Default is _value
.
mode
Standard deviation mode or type of standard deviation to calculate.
Default is sample
.
Available modes:
- sample: Calculate the sample standard deviation where the data is considered part of a larger population.
- population: Calculate the population standard deviation where the data is considered a population of its own.
tables
Input data. Default is piped-forward data (<-
).
Examples
Return the standard deviation of values in each table
import "sampledata"
sampledata.int()
|> stddev()
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.