Dear Statalisters,
My data is a labor market panel for two years over a large number of individuals.
I am trying to do a graph combine for a number of variables. So, I tried the below code but I got an error message saying: age is not a memory graph.
I can not figure out what went wrong.
Many thanks,
Maye
My data is a labor market panel for two years over a large number of individuals.
I am trying to do a graph combine for a number of variables. So, I tried the below code but I got an error message saying: age is not a memory graph.
I can not figure out what went wrong.
Code:
local continuous "age wealth yrschl hrwg crhrsday mnthwg hrwgAllJob mnthwgAllJob"
des `continuous'
foreach var in `continuous' {
graph box `var', saving (`var',replace)
}
local continous "age.gph wealth.gph yrschl.gph crhrsday.gph hrwg.gph mnthwg.gph hrwgAllJob.gph mnthwgAllJob.gph"
graph combine `continuous',rows(3) iscale(.5)
Maye

Comment