Hi everyone!
I used the next command to draw a graph:
The trouble is that the values of the variable "penalty_men" can have several digits after the decimal point, but I prefer that the graph will be as "clean" as possible and only two or three digits will appear so for example the number -.3038417 will appear as -.303 or -.304. I tried to use the option "mlabformat()" but I'm not sure what to write in the parenthesis. Can you Please help me to complete the next code?:
Thank you already,
Fitzgerald
I used the next command to draw a graph:
Code:
twoway (rcap ci_up ci_low event) (line penalty_men event) (scatter penalty_men event if event == 0 | event == 10, mlabel(penalty_men))
Code:
twoway (rcap ci_up ci_low event) (line penalty_men event) (scatter penalty_men event if event == 0 | event == 10, mlabel(penalty_men) mlabformat())
Fitzgerald
Comment