Compare and Represent Data With Different Number of Elements

11 Views Asked by At

I have N entities that I want to compare them to; for example, A has 5 options, B has 3 options, and C has 6 options. 1 means an option exists, 0 otherwise as in the example next:

A = [1 1 0 1 1] (satisfied by 4 options out of 5)

B = [1 0 0] (satisfied with 1 option out of 3)

C = [0 0 0 0 0 1] (satisfied with 1 option out of 6)

If we want to plot this data to show their performance, we can see that the max of each entity is not the same, so the y-axis might not represent the actual data.. how can we handle this issue?

We can't pad because they are different entities; padding would mean it is absent, which is incorrect.

I don't want also to plot them with a relative axis or stacked bar-plot.