Applications/Stata
From HPC
Revision as of 14:51, 31 January 2017 by Pysdlb (talk | contribs) (Created page with " == Application Details == * Description : Stata is a commercial statistical package, which provides a complete solution for data analysis, data management, and graphics. St...")
Application Details
- Description : Stata is a commercial statistical package, which provides a complete solution for data analysis, data management, and graphics. Stata version 14 is available in the multi-threaded package variant Stata/MP.
- Versions : 14.1.0
- Module names : stata/14.1.0
- License: University of Hull, presently unavailable
- Further information: http://www.stata.com/ stata
Toolboxes
No toolboxes are loaded
Usage Examples
Test Program
Below is a test example Stata batch file for submission to VIPER called testit.do
clear* set rmsg on set obs 1000000 forval n = 1/10 { g i`n' = runiform() } g dv = rbinomial(1,.3) memory qui logit dv i* qui xtmixed dv i* *with bootstrap: qui bs, reps(1000): logit dv i*
Batch Submission
#!/bin/bash #SBATCH -J StataMP-20 #SBATCH -N 1 #SBATCH --ntasks-per-node=20 #SBATCH -D /home/user/Stata #SBATCH -o test.out #SBATCH -e test.err #SBATCH -p compute #SBATCH --exclusive #SBATCH --time=2-00:00:00 echo $SLURM_NTASKS echo $SLURM_JOB_NODELIST echo $SLURM_HOSTS module purge module load stata/14.1.0 stata-mp -s do testit.do
[username@login01 ~]$ sbatch stata-mp.job Submitted batch job 389522