Dear Statalisters,
A previous post addressed a similar problem, but had no success in getting a solution:
https://www.statalist.org/forums/for...some-instances
In a nut shell: when we have multiple subscripts in a graph, only the first is OK. The remaining subscripts fail.
Here is an example:
Has anyone found a solution for that? Is it a bug in Stata? I am under Stata SE 14.2 for Linux (Revision 16 Nov 2016).
All the best,
Tiago
A previous post addressed a similar problem, but had no success in getting a solution:
https://www.statalist.org/forums/for...some-instances
In a nut shell: when we have multiple subscripts in a graph, only the first is OK. The remaining subscripts fail.
Here is an example:
Code:
clear set seed 1234556 set obs 200 gene time = round(runiform()*7) gene group = runiform()>0.5 gene y = cond(group==1,rnormal(100,5), rnormal(90,5)) twoway qfitci y time if group==1 || qfitci y time if group==0, xlabel(0 "Baseline" 1 "T{subscript:1}" 2 "T{subscript:2}" 3 "T{subscript:3}" 4 "T{subscript:4}" 5 "T{subscript:5}" 6 "T{subscript:6}" 7 "T{subscript:7}")
All the best,
Tiago
Comment