mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
8.0 KiB
8.0 KiB
slug | sidebar_position | sidebar_title |
---|---|---|
/en/sql-reference/aggregate-functions/reference/exponentialtimedecayedmax | 108 | exponentialTimeDecayedMax |
exponentialTimeDecayedMax
Calculates the exponential moving average of values for the determined time.
Syntax
exponentialTimeDecayedMax(x)(value, timeunit)
Example
Query:
SELECT
value,
time,
round(exp_smooth, 3),
bar(exp_smooth, 0, 1, 50) AS bar
FROM
(
SELECT
(number % 5) = 0 AS value,
number AS time,
exponentialTimeDecayedMax(1)(value, time) OVER (ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS exp_smooth
FROM numbers(50)
);
Result:
┌─value─┬─time─┬─round(exp_smooth, 3)─┬─bar────────────────────────────────────────────────┐
1. │ 1 │ 0 │ 1 │ ██████████████████████████████████████████████████ │
2. │ 0 │ 1 │ 0.368 │ ██████████████████▍ │
3. │ 0 │ 2 │ 0.135 │ ██████▊ │
4. │ 0 │ 3 │ 0.05 │ ██▍ │
5. │ 0 │ 4 │ 0.018 │ ▉ │
6. │ 1 │ 5 │ 1 │ ██████████████████████████████████████████████████ │
7. │ 0 │ 6 │ 0.368 │ ██████████████████▍ │
8. │ 0 │ 7 │ 0.135 │ ██████▊ │
9. │ 0 │ 8 │ 0.05 │ ██▍ │
10. │ 0 │ 9 │ 0.018 │ ▉ │
11. │ 1 │ 10 │ 1 │ ██████████████████████████████████████████████████ │
12. │ 0 │ 11 │ 0.368 │ ██████████████████▍ │
13. │ 0 │ 12 │ 0.135 │ ██████▊ │
14. │ 0 │ 13 │ 0.05 │ ██▍ │
15. │ 0 │ 14 │ 0.018 │ ▉ │
16. │ 1 │ 15 │ 1 │ ██████████████████████████████████████████████████ │
17. │ 0 │ 16 │ 0.368 │ ██████████████████▍ │
18. │ 0 │ 17 │ 0.135 │ ██████▊ │
19. │ 0 │ 18 │ 0.05 │ ██▍ │
20. │ 0 │ 19 │ 0.018 │ ▉ │
21. │ 1 │ 20 │ 1 │ ██████████████████████████████████████████████████ │
22. │ 0 │ 21 │ 0.368 │ ██████████████████▍ │
23. │ 0 │ 22 │ 0.135 │ ██████▊ │
24. │ 0 │ 23 │ 0.05 │ ██▍ │
25. │ 0 │ 24 │ 0.018 │ ▉ │
26. │ 1 │ 25 │ 1 │ ██████████████████████████████████████████████████ │
27. │ 0 │ 26 │ 0.368 │ ██████████████████▍ │
28. │ 0 │ 27 │ 0.135 │ ██████▊ │
29. │ 0 │ 28 │ 0.05 │ ██▍ │
30. │ 0 │ 29 │ 0.018 │ ▉ │
31. │ 1 │ 30 │ 1 │ ██████████████████████████████████████████████████ │
32. │ 0 │ 31 │ 0.368 │ ██████████████████▍ │
33. │ 0 │ 32 │ 0.135 │ ██████▊ │
34. │ 0 │ 33 │ 0.05 │ ██▍ │
35. │ 0 │ 34 │ 0.018 │ ▉ │
36. │ 1 │ 35 │ 1 │ ██████████████████████████████████████████████████ │
37. │ 0 │ 36 │ 0.368 │ ██████████████████▍ │
38. │ 0 │ 37 │ 0.135 │ ██████▊ │
39. │ 0 │ 38 │ 0.05 │ ██▍ │
40. │ 0 │ 39 │ 0.018 │ ▉ │
41. │ 1 │ 40 │ 1 │ ██████████████████████████████████████████████████ │
42. │ 0 │ 41 │ 0.368 │ ██████████████████▍ │
43. │ 0 │ 42 │ 0.135 │ ██████▊ │
44. │ 0 │ 43 │ 0.05 │ ██▍ │
45. │ 0 │ 44 │ 0.018 │ ▉ │
46. │ 1 │ 45 │ 1 │ ██████████████████████████████████████████████████ │
47. │ 0 │ 46 │ 0.368 │ ██████████████████▍ │
48. │ 0 │ 47 │ 0.135 │ ██████▊ │
49. │ 0 │ 48 │ 0.05 │ ██▍ │
50. │ 0 │ 49 │ 0.018 │ ▉ │
└───────┴──────┴──────────────────────┴────────────────────────────────────────────────────┘