I have a large number of do-files that I would like to run by systematically changing parts of the code.
Changes I want to make:
changed to
as well as
changed to
Ideally, I would like to find a solution such that I can loop over all do-files, with the do-files being executed with the aforementioned changes
Changes I want to make:
Code:
keep [varlist]
Code:
keep [other varlist]
Code:
save file_name
Code:
save other_file_name
Code:
forvalues i =1/100 { [run with the mentioned changes] do_file_`i' }
Comment