In R, I can run another R script using
source("script.R")
How can I do the same in STATA? Thanks.
|
In R, I can run another R script using
How can I do the same in STATA? Thanks.
| ||||
|
feedback
|
|
In Stata, there are two types of scripts: 1. There are do-files, which are sequences of the commands as you type them, which may contain pretty much anything, and 2. There are ado=files, which are self-contained program scripts. Ado stands for "Automatically loaded DO files", I guess. The primary distinction is that to execute the do-file, you need to -do- it or -run- it:
shows the output, and
suppresses the output. The automatically loaded do-files, as the name implies, are loaded automatically. When you type
Stata will first look for the program
HTH, Stas | |||||
feedback
|