Excerpt |
---|
Stata SE is an integrated statistical package for Windows, Macintosh, and Unix platforms. More than just a statistical package, Stata is also a full data-management system with complete statistical and graphical capabilities. It features both X-window and text user interfaces. |
Stata related:
How to choose between SE, IC and MP editions?
Most users will likely only need IC. All versions have the same statistical functionality but differ in the size of their data structures.
How does one send a Stata batch job to the cluster compute nodes?
Make a stata do file with stata commands. To send:
> sbatch --wrap="stata -b your_filename.do" |
---|
How to run stata interactively:
bash-4.1$ srun --pty --x11=first bash bash-4.1$ module load stata/13 bash-4.1$ xstata |
---|
What are the command line arguments to Stata?
To find out:
> srun --pty --x11=first -p interactive stata -help |
---|