I'm encountering an incredibly mysterious error, and I was hoping anybody here would have some insight. Code like this has worked fine for me in the past and continues to work in other settings, but the problem has now developed on a particular server. Minimal example below:
set obs 10
gen x = _n
gen y = _n +1
gen cond = x<6
graph twoway (line x y if cond==0) (line x y if cond==1)
throws:
"series 0 not found"
You need to overlay two graphs, and those two graphs need to have different conditional statements in them. This persists even after restarting Stata and running 'clear all' and 'clear ado'. It's probably something about my account on that machine, but I don't know what more I can do to clear out the gunk.
set obs 10
gen x = _n
gen y = _n +1
gen cond = x<6
graph twoway (line x y if cond==0) (line x y if cond==1)
throws:
"series 0 not found"
You need to overlay two graphs, and those two graphs need to have different conditional statements in them. This persists even after restarting Stata and running 'clear all' and 'clear ado'. It's probably something about my account on that machine, but I don't know what more I can do to clear out the gunk.
Comment