Hello

I want to make a comparative graph between the results that I have. There are four variables (var1 var2 var3 and var 4). Each variable is made up of four values ​​(percentages) that represent a transition level: line1 is advanced, line2 is intermediate, line3 is behind, and line4 is national.
What I want is something like a graph dot but that allows me to see each of the values ​​in each of the four variables.
If I draw the graph I would like to have something like this:


var1 var2 var3 var4
National ....... X .... ... X ........ ........... X X ............ .
Advanced .... X ........ ....... X .... ... X ........ ...... X ..... ..
Intermediate X ........... .... X ........ ............ X. .... X ........
Delayed ..... X ..... ........ X ... X ............ .... X ........ .

I would greatly appreciate your guidance in knowing if what I am looking for can be done and, if so, how it should be done.


Thanks you


copy starting from the next line ------ ----------------
Code:
* Example generated by -dataex-. To install: ssc install    dataex
clear
input float(var1 var2 var3 var4)
.5 1.5   3  .4
3.2   2 4.7 3.1
3.3 1.2 2.5 2.9
1.3 1.3 3.9 1.2
end
copy up to and including the previous line - ----------------