You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
269 B
Plaintext
11 lines
269 B
Plaintext
9 months ago
|
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
|