0
0
Tableaubi_tool~20 mins

Distribution analysis (box plots) in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Box Plot Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
dax_lod_result
intermediate
2:00remaining
Calculate the Interquartile Range (IQR) in Tableau

You have a dataset with sales values. You want to calculate the Interquartile Range (IQR) using Tableau calculations to create a box plot. Which calculation correctly computes the IQR?

AWINDOW_MEDIAN(SUM([Sales])) - WINDOW_AVG(SUM([Sales]))
BPERCENTILE([Sales], 0.75) - PERCENTILE([Sales], 0.25)
CMEDIAN([Sales]) - AVG([Sales])
DWINDOW_PERCENTILE(SUM([Sales]), 0.75) - WINDOW_PERCENTILE(SUM([Sales]), 0.25)
Attempts:
2 left
💡 Hint

Remember that IQR is the difference between the 75th and 25th percentiles over a window.

visualization
intermediate
2:00remaining
Identify the correct box plot visualization setup

You want to create a box plot in Tableau to analyze the distribution of sales by region. Which of the following steps is correct to build the box plot?

ADrag Region to Columns, Sales to Rows, then add Sales to Detail and use Analytics pane to add Box Plot.
BDrag Sales to Columns, Region to Rows, then create a calculated field for median sales and plot it as a bar chart.
CDrag Region to Filters, Sales to Tooltip, then create a histogram of sales.
DDrag Region to Rows, Sales to Columns, then use Show Me to select a scatter plot.
Attempts:
2 left
💡 Hint

Box plots require grouping by category and a measure on the axis, then adding the box plot from Analytics.

🧠 Conceptual
advanced
2:00remaining
Understanding outliers in box plots

In a box plot, how are outliers typically determined and displayed?

AOutliers are points outside 1.5 times the IQR above the third quartile or below the first quartile, shown as individual dots.
BOutliers are points beyond the maximum and minimum values, shown as bars.
COutliers are points exactly at the median, shown as a line.
DOutliers are points within the whiskers, shown as shaded areas.
Attempts:
2 left
💡 Hint

Recall the standard rule for detecting outliers in box plots.

🔧 Formula Fix
advanced
2:00remaining
Fix the Tableau calculation for whisker limits

You wrote this Tableau calculated field to find the upper whisker limit for a box plot:
IF SUM([Sales]) < WINDOW_PERCENTILE(SUM([Sales]), 0.75) + 1.5 * (WINDOW_PERCENTILE(SUM([Sales]), 0.75) - WINDOW_PERCENTILE(SUM([Sales]), 0.25)) THEN SUM([Sales]) ELSE NULL END
But the whisker is not displaying correctly. What is the main issue?

AThe 1.5 multiplier should be applied to the sum of percentiles, not their difference.
BWINDOW_PERCENTILE cannot be nested inside IF statements in Tableau.
CThe calculation should compare individual row sales, not SUM([Sales]) aggregated over the window.
DThe calculation should use MAX instead of IF to find the maximum value within the limit.
Attempts:
2 left
💡 Hint

Think about what level of aggregation is needed for the comparison.

🎯 Scenario
expert
3:00remaining
Designing a dashboard with box plots for multiple categories

You need to build a Tableau dashboard showing box plots of sales distribution for multiple product categories and subcategories. Users want to filter by region and time period. Which approach best ensures accurate box plots and responsive filtering?

ACreate separate worksheets for each category, add box plots individually, then combine them in the dashboard without filters.
BCreate a single worksheet with Category and Subcategory on Columns, Sales on Rows, add box plot from Analytics, then add Region and Date filters to the dashboard with 'Apply to all worksheets'.
CCreate a worksheet with Category on Rows, Sales on Columns, use a histogram instead of box plots, and add filters only for Region.
DCreate a worksheet with Subcategory on Rows, Sales on Rows, add box plot, and use context filters for Region and Date.
Attempts:
2 left
💡 Hint

Think about how to build a flexible, filterable dashboard with multiple categories.