Dear Statalist members
I have this dataset with 3 patients, wherein "lad" has been measured over 5 follow-up times. The data is as below:
I want to make a graph which looks like this graph below. I have made this graph in Microsoft Excel. How can I make a similar graph in Stata?
I have this dataset with 3 patients, wherein "lad" has been measured over 5 follow-up times. The data is as below:
Code:
* Example generated by -dataex-. For more info, type help dataex clear input byte(sno followup) double lad 9 0 5.5 9 1 5.1 9 2 4.9 9 3 4.8 9 4 5.6 13 0 5.8 13 1 5.4 13 2 4.9 13 3 4.8 13 4 5.6 24 0 5.8 24 1 5.7 24 2 5.4 24 3 5.4 24 4 4.3 end label values followup followup label def followup 0 "Pre-PTCM", modify label def followup 1 "Immediate Post-PTCM", modify label def followup 2 "1 Year Post-PTCM", modify label def followup 3 "Three Year Post-PTCM", modify label def followup 4 "Five Year Post-PTCM", modify

Comment