How would I get a percent change for each t value from baseline and chart it as a bar line graph

Options

/*

Get RCI avg of all scores that aren't baseline
CASE WHEN `summary_order_rule` > 1 THEN AVG(`RCI`)
Get RCI avg of all scroes that are baseline
CASE WHEN `summary_order_rule` = 1 THEN AVG(`RCI`) END
Get %change between baseline and followup scores for each summary order
((avg_followup - avg_baseline) / avg_baseline) * 100 

*/

Objective: Get a bar/line graph that shows the percent change in RCI scores for all T(x) values that exist in the dataset.

Attempt 1: The below BeastMode results in a syntax error but feels like it might be on the right path?

AVG(((CASE WHEN summary_order_rule > 1 THEN AVG(RCI) END - CASE WHEN summary_order_rule = 1 THEN AVG(RCI) END ) / CASE WHEN summary_order_rule = 1 THEN AVG(RCI) END) * 100 FIXED(BY summary_order_rule))

Attempt 2: The below BeastMode seems to be filtering out some T(2) values for some reason but not all the time? Not sure what's going on here really…

(AVG(AVG(RCI) FIXED(REMOVE CASE WHEN summary_order_rule = 1 THEN RCI END)) OVER (PARTITION BY summary_order_rule)-AVG(AVG(DISTINCT CASE WHEN summary_order_rule = 1 THEN RCI END) FIXED()))/AVG(AVG(DISTINCT CASE WHEN summary_order_rule = 1 THEN RCI END) FIXED()

Example Dataset:

Tagged:

Answers

  • MichelleH
    Options

    @Seth Just to make sure I understand what you're trying to accomplish, what are the % change values you're expecting based on the example data you shared?