Setup initial file structure

This commit is contained in:
2024-03-05 11:20:30 +01:00
parent 6183a6391b
commit 70e53e7760
708 changed files with 277486 additions and 0 deletions

View File

@ -0,0 +1,10 @@
program define torumm
syntax varlist ,File(string) [Replace msp]
tempname string
egen `string'=concat(`varlist')
if "`msp'"=="" {
replace `string'=subinstr(`string',"."," ",.)
}
*tab `string'
outsheet `string' using "`file'", `replace' nonames noquote
end