I am working with a model with 75 exogenous variables that are pulled from a database that my firm maintains. I would like to add in a quality assurance step where all of the exogenous variables are visually inspected to rule out weird data processing errors. I have a loop that produces line graphs of all of the variables:
Is there a way to pause the program execution after the production of each graph? Should I be using a spool instead?%exogenous = @wlookup("*_cbo", "series")
for %2 {%exogenous}
smpl 2010 2085
line {%2}
next
Thanks!
