Hello,
I am creating multiple versions of the same graph by a variable (experience). I'm using the following code:
I'm aware that sort is not a valid by option. Is there an option that would allow me to sort the graphs in descending (or ascending) order occurring to experience?
I am creating multiple versions of the same graph by a variable (experience). I'm using the following code:
Code:
graph pie, over(relevance) pie(_all, explode) plabel(_all percent, size(tiny)) /// by(, title("Relevance")) by(experience)
Comment