I am trying to execute the following code for several -xtgraph- charts. All the charts are executed but the title is not added and chart not saved to file. I would be grateful if someone could tell me what I have done wrong.
Many thanks!
Many thanks!
Code:
foreach v in SkinTodayChild SkinTodayParent SCORADExtTotal SCORADIntTotal SCORADSubPruritus SCORADSubSleepLoss ///
SCORADSubTotal SCORADFinalTotal CDLQI_Score CDLQIP_Score IDQOL_Score FDLQI_Score ///
POEMP_Score POEMC_Score DFI_Score{
xtgraph `v', av(median) bar(iqr) ///
title ("`v' by Visit (Median & IQR)") ///
saving("D:\x\chart`v'.png")
}

Comment