Hello statalist.
I've earlier worked with different graph types and I'm still playing around with some of the functions in a few of them and I keep needing something very specific that I don't know how to fix in the radar-ado.
Below I have attached an example of some data and how the radar chart creates the graph. What I want it to do is, instead of drawing a line between the vectors, I need it to just mark the spot on the vector with a dot/mark/something and NOT connect it with lines. It might sound a little useless but it is for something very specific where I really need to do this exact thing. I've looked in the programs ado-file but I am unsure how to identify the places where it defines the lines and even more so; how to change that spot with something different.
I've earlier worked with different graph types and I'm still playing around with some of the functions in a few of them and I keep needing something very specific that I don't know how to fix in the radar-ado.
Below I have attached an example of some data and how the radar chart creates the graph. What I want it to do is, instead of drawing a line between the vectors, I need it to just mark the spot on the vector with a dot/mark/something and NOT connect it with lines. It might sound a little useless but it is for something very specific where I really need to do this exact thing. I've looked in the programs ado-file but I am unsure how to identify the places where it defines the lines and even more so; how to change that spot with something different.
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input str1 OC float oc "1" .8916667 "2" .8388889 "3" .75 "4" .6027778 "5" .28333333 "6" .3805556 "7" .3388889 "8" .8138889 end cap ssc install radar radar OC oc, lc(red blue green) r(0 .1 .2 .3 .4 .5 .6 .7 .8 .9 1) labsize(*.7)
Comment