我用一個小時的粒度將數據導入石墨中。例如如何獲得一週中每天的移動平均值?
2013-12-06-12:00 15
2013-12-08-09:00 14
2013-12-09-12:00 3
2013-12-13-00:00 10
2013-12-14-08:00 20
2013-12-14-09:00 1
2013-12-15-00:00 5
2013-12-16-00:00 11
2013-12-16-02:00 12
...等等
現在,我希望能夠繪製成「每天在本週演變的價值」這使實際值顯示是幾星期內這一特定星期幾(例如2周)的總和(或平均值)。
我的圖形會是什麼樣子,如果我只能看看上週:
^ 21
20| |
| |
| 12.5| 13
10| | | 9.5 |
| | | | |
| | | | |
0+--------------------------------->
Mon Tue Wed Thu Fri Sat Sun
12 13 14 15 16
因此,例如,對於「星期五」點,這需要今天(11 + 12)的值時, (3)的平均值和((11 + 12)+3)/ 2的平均值
這是可能的,怎麼樣?
我發現http://graphite.readthedocs.org/en/latest/functions.html#graphite.render.functions.timeShift和那個http://graphite.readthedocs.org/en/latest/functions的.html#graphite.render.functions.timeStack –