I have a variable VALUE with two distinct groups noted by GROUP (dummy), I would like to write:

Code:
stripplot VALUE, over(GROUP)  cumul cumprob bar refline
to get the plot with the distributions, the confidence intervals, mean, and reference lines of each GROUP in the same graph (that's within the same axes).


However, the behavior of the option "over" here seems to be the same as in the option "by", as opposed to, for example, in qplot.

Is there any way to do what I want?

Thank you.