Dear all,
I am doing histograms and would like to emphasize with a line or mark the cutoff of 1% and 5 % in the histograms. I am assuming that this should be feasible but I have no idea how to start, any suggestions? I have attached the coding here below for the two histograms and I would like to add an option to identify 1% and 5 % cutoff in each histogram.
histogram el_input_val_099 if inlist(treatment,0), bin(20) sort(descending) name(control,replace)
histogram el_input_val_099 if inlist(treatment,1,2,3,4,5,6),bin(20) sort(descending) name(treatment,replace)
gr combine control treatment, ycom xcom
Thanks for the help!
I am doing histograms and would like to emphasize with a line or mark the cutoff of 1% and 5 % in the histograms. I am assuming that this should be feasible but I have no idea how to start, any suggestions? I have attached the coding here below for the two histograms and I would like to add an option to identify 1% and 5 % cutoff in each histogram.
histogram el_input_val_099 if inlist(treatment,0), bin(20) sort(descending) name(control,replace)
histogram el_input_val_099 if inlist(treatment,1,2,3,4,5,6),bin(20) sort(descending) name(treatment,replace)
gr combine control treatment, ycom xcom
Thanks for the help!
Comment