I have a dataset in Stata with two variables, perc_vol
(numeric) and low_medium_high
(values "L"
, "M"
, "H"
).
I want to run a Mann-Whitney test to compare perc_vol
between H
and L
, H
and M
and L
and M
.
For two values I can use code like ranksum perc_vol_fin_lei, by(group_liquidity)
but for three, I don´t know how I can do this.