Recall & Review
beginner
What is a moving average in data visualization?
A moving average smooths data by calculating the average of a set number of data points over time. It helps show trends by reducing short-term fluctuations.
Click to reveal answer
beginner
How do you create a moving average in Tableau?
You use a table calculation called WINDOW_AVG() over a measure, specifying the range of data points to average, like the last 3 months.
Click to reveal answer
beginner
Why use a moving average instead of raw data points?
Because it reduces noise and shows clearer trends, making it easier to understand overall patterns in data.
Click to reveal answer
intermediate
What does WINDOW_AVG(SUM([Sales]), -2, 0) mean in Tableau?
It calculates the average of the current and previous two data points of the SUM of Sales, creating a 3-point moving average.
Click to reveal answer
intermediate
What is the difference between a simple moving average and a weighted moving average?
A simple moving average gives equal weight to all points, while a weighted moving average gives more importance to recent points.
Click to reveal answer
What is the main purpose of a moving average in a dashboard?
✗ Incorrect
A moving average smooths data to reveal trends by reducing short-term fluctuations.
Which Tableau function is commonly used to calculate a moving average?
✗ Incorrect
WINDOW_AVG() calculates the average over a window of data points, perfect for moving averages.
In a 3-point moving average, how many data points are averaged?
✗ Incorrect
A 3-point moving average averages three data points at a time.
What does the '-2' mean in WINDOW_AVG(SUM([Sales]), -2, 0)?
✗ Incorrect
The '-2' means the window starts two points before the current point.
Which moving average type gives more importance to recent data?
✗ Incorrect
Weighted moving averages assign more weight to recent data points.
Explain how a moving average helps in understanding sales trends over time.
Think about how averaging helps see the big picture beyond daily ups and downs.
You got /4 concepts.
Describe the steps to create a 3-point moving average in Tableau using WINDOW_AVG.
Focus on the function and the window range parameters.
You got /4 concepts.