Navigation :
Envision Language
Lokad Platform
Envision Gallery
Envision Reference
- Glossary
- Selectors
- Tile syntax
- List of icons
- StyleCode sub-language
-
_
-
A-B-C
-
D-E-F
-
G-H-I
-
J-K-L
-
M-N-O
-
P-Q-R
-
S-T-U
-- same
-- sample
-- sanitize
-- scalar
-- scan
-- scatter
-- sequenceUrl
-- show
-- sin
--
single (disambiguation)
-- slicepicker
-- Slices
-- sliceSearchUrl
-- slicetree
-- sliceUrl
-- small
-- smooth
-- smudge
-- solve.moq
-- sort
-- span
-- spark
-- sqrt
-- startsWith
-- stdev
-- stdevp
-- stockrwd.c
-- stockrwd.m
-- stockrwd.s
-- strlen
-- substr
-- sum
-- summary
-- syncUrl
-- table
-- tabs
-- tanh
-- taskUrl
-- text
-- then
-- today
-- transform
-- treemap
-- trim
-- true
-- truncate
-- tryParseDate
-- tryParseNumber
-- tryParseTime
-- tryParseWeek
-- tuple
--
uniform
-- uniform.left
-- uniform.right
-- union
-- upload
-- uppercase
-- URL
-
V-W-X
-
Y-Z
Envision Specifications
Library
Legacy
stdevp
stdevp(T.a : number) 🡒 number, aggregator
Returns the stand deviation on a population that is assumed to be entirely observed . The formula is given by:
$$s = \sqrt{\frac{1}{N} \sum_{i=1}^N \left(x_i - \bar{x}\right)^2 }$$
where $\textstyle{x_1,, x_2,, \ldots,, x_N}$ are the observed values of the sample items, $\bar{x}$ is the mean value of these observations, and $N$ is the number of observations in the sample.
Example:
table T = with
[| as A, as B |]
[| 0, "a" |]
[| 0, "a" |]
[| 0, "b" |]
[| 1, "b" |]
[| 2, "c" |]
table G[gdim] = by T.B
where T.B != "c"
show table "" a1b4 with
gdim
stdevp(T.A)
group by gdim
The aggregator returns 0 on empty groups.
See also