Create a five-number summary
Perform the following steps to create a five-number summary of data points for a Boxplot chart:
Create a new or open an existing Analyzer report and select Boxplot from the chart dropdown.
Right-click any Measures field and choose User Defined Measure> Create Calculated Measure.
The Calculated Measure dialog box displays. See Creating a calculated measure in a report.
Create a calculated measure that returns the median value.
Enter the following MDX query In the Create Calculated Measure formula panel:
Median(<Set>, <Numeric Expression>)
Enter an appropriate name and click OK to create the median calculated measure.
You can return a set of descendants of a set member at a specified level, optionally including or excluding descendants in other levels with the following code:
Descendants(<Member>, <Level>)
Create a calculated measure that returns the lower quartile value.
Enter the following MDX query In the Create Calculated Measure formula panel:
FirstQ(<Set>, <Numeric Expression>)
.Enter an appropriate name and click OK to create the lower calculated measure.
Create a calculated measure that returns the upper quartile value.
Enter the following MDX query In the Create Calculated Measure formula panel:
ThirdQ(<Set>, <Numeric Expression>)
.Enter an appropriate name and click OK to create the upper quartile calculated measure.
Create a calculated measure that returns the minimum value.
Enter the following MDX query In the Create Calculated Measure formula panel:
Min(<Set>, <Numeric Expression>)
.Enter an appropriate name and click OK to create the minimum calculated measure.
Create a calculated measure that returns the maximum value.
Enter the following MDX query In the Create Calculated Measure formula panel:
Max(<Set>, <Numeric Expression>)
.Enter an appropriate name and click OK to create the maximum calculated measure.
Last updated
Was this helpful?