I am running the following command:
but getting an error:
Same thing is happening when using the tabulate command alone:
foreach var of varlist ` Age - Region Smoking Alcohol ' {
tabulate `var'
}
Can anyone please help detect the source of the error?
Code:
foreach var of varlist ` Age - Region Smoking Alcohol ' { tabout `variable' using test.txt, append }
Code:
varlist required r(100);
foreach var of varlist ` Age - Region Smoking Alcohol ' {
tabulate `var'
}
Can anyone please help detect the source of the error?
Comment