Skip to content

Statistical and regression analysis overview

Functions for statistical analysis and linear regression on time-series data

Perform statistical analysis and linear regression on time-series data. These functions are similar to PostgreSQL statistical aggregates, but they include more features and are easier to use in continuous aggregates and window functions.

This group of functions uses the two-step aggregation pattern.

Rather than calculating the final result in one step, you first create an intermediate aggregate by using the aggregate function.

Then, use any of the accessors on the intermediate aggregate to calculate a final result. You can also roll up multiple intermediate aggregates with the rollup functions.

The two-step aggregation pattern has several advantages:

  1. More efficient because multiple accessors can reuse the same aggregate
  2. Easier to reason about performance, because aggregation is separate from final computation
  3. Easier to understand when calculations can be rolled up into larger intervals, especially in window functions and continuous aggregates
  4. Perform retrospective analysis even when underlying data is dropped, because the intermediate aggregate stores extra information not available in the final result

To learn more, see the blog post on two-step aggregates.

Calculate the average, standard deviation, and skewness of daily temperature readings:

WITH daily_stats AS (
SELECT
time_bucket('1 day'::interval, time) AS day,
stats_agg(temperature) AS stats
FROM weather_data
GROUP BY day
)
SELECT
day,
average(stats) AS avg_temp,
stddev(stats) AS std_dev,
skewness(stats) AS skew
FROM daily_stats
ORDER BY day;

Calculate the correlation coefficient and linear regression slope between two variables:

WITH daily_stats AS (
SELECT
time_bucket('1 day'::interval, time) AS day,
stats_agg(sales, temperature) AS stats
FROM store_data
GROUP BY day
)
SELECT
day,
corr(stats) AS correlation,
slope(stats) AS regression_slope,
intercept(stats) AS y_intercept
FROM daily_stats
ORDER BY day;

Calculate a 7-day rolling average using the rolling window function:

SELECT
time_bucket('1 day'::interval, time) AS day,
average(rolling(stats_agg(temperature)) OVER (ORDER BY time_bucket('1 day'::interval, time) ROWS 6 PRECEDING)) AS rolling_avg_7day
FROM weather_data
GROUP BY day
ORDER BY day;