Single running average
As a researcher at the national weather agency, you want to run more analysis on the latest temperature data and you've just learned how to do running averages. You're keen to gain new insights and show them to the rest of the team.
Your task is to calculate the running average of the lowest monthly temperatures in Hawaii in the available dataset.
Diese Übung ist Teil des Kurses
Time Series Analysis in PostgreSQL
Anleitung zur Übung
- Use a window function to calculate the running average for
t_monthly_min
for a single weather station in Hawaii,HI
.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
-- Calculate the running average of the lowest temperates in Hawaii
SELECT
ts.state,
year_month,
t_monthly_min,
___ AS running_avg_temp
FROM temperatures_monthly AS tm
JOIN temperature_stations AS ts
USING(station_id)
WHERE state = 'HI'
ORDER BY year_month;