Hi Community,
I have been trying to solve this use-case for a long, long time and now seeking your help.
I have the below columns in my data.
Expectation1 | Exp1_Score | Expectation2 | Exp2_Score | Expectation3 | Exp3_Score |
AAA | 5 | BBB | 6 | CCC | 5 |
AAA | 6 | CCC | 4 | ||
BBB | 4 | AAA | 3 | CCC | 2 |
CCC | 7 | AAA | 4 | BBB | 6 |
AAA | 7 | BBB | 5 |
I want add a scatter chart with the x-axis being % of each unique expectation and the y-axis being the average of each of the expectation. In summary the below should be the summarized data and the visual.
Expectation | Count | Ratio | Average Score |
AAA | 5 | 42% | 5 |
BBB | 4 | 33% | 5.25 |
CCC | 3 | 25% | 4.5 |
I ofcourse want to slice and dice using the various dimensions.
Please help me crack this.
Regards,
Milan