Обсуждение: Running mean filtering using Window Functions?

Поиск
Список
Период
Сортировка

Running mean filtering using Window Functions?

От
Andreas Gaab
Дата:

Hi,

 

can I realize a running mean filter using window functions?

 

What I can think of is:

 

SELECT avg(random) OVER (PARTITION BY floor(time_s / 60) ORDER BY floor(time_s / 60))

FROM (

SELECT generate_series(0,600,20) time_s, random()

) as data;

 

which averages all measurements in one minute, but not every line with its following two lines.

 

Any suggestions?

 

Best regards

Andreas

 

___________________________________________________________________________

 

SCANLAB AG

Dr. Andreas Simon Gaab

Entwicklung • R & D

 

Siemensstr. 2a • 82178 Puchheim • Germany

Tel. +49 (89) 800 746-513 • Fax +49 (89) 800 746-199

mailto:a.gaab@scanlab.dewww.scanlab.de

 

Amtsgericht München: HRB 124707 • USt-IdNr.: DE 129 456 351

Vorstand: Georg Hofner (Sprecher), Christian Huttenloher, Norbert Petschik

Aufsichtsrat (Vorsitz): Dr. Hans J. Langer

___________________________________________________________________________