STATA is a general purpose statistical software package available for PC, Mac OS, and UNIX
and works in the interactive, non-interactive, or point-and-click modes.
STATA has four flavors: Small, Intercooled (Standard), Special Edition (SE), SE for multiprocessor (MP).
In UNIX, type in "stata -b do file_name" to run STATA in the non-interactive mode.
Version 8 revised graphics commands with enhanced features and
version 9 introduced Mata, a new matrix manipulation language, which is similar to SAS/IML.
GENERAL RESOURCES
STATA BASICS
Basic Commands
Management Commands
STATA FUNCTIONS
Operators
Math Functions
String Functions
INPUT / OUTPUT
Handling Data Sets
Import
Export
DATA MANIPULATION
Editing
REGRESSION
Ordinary Least Squares (OLS)
Hypothesis Test
Advanced Models
PANEL DATA
LOGIT / PROBIT MODELS
Binary Logit/Probit
Ordinal and Multinomial
Special Logit/Probit
EVENT COUNT / LIMITED DV MODELS
Event Count Data Models
Truncated/Censored/Self-selected
Related Commands
ANOVA / T-TEST
T-Test
ANOVA
MULTIVARIATE ANALYSIS
Correlation Analysis
Factor Analysis
Other Analysis
NONPARAMETRIC ANALYSIS
PROGRAMMING
Basics
local i=0
foreach var in var1-var10 {
local i=`i'+1
sum `var'
display `i'
}
foreach var of varlist var1-var10 {
...
}
local car "Sonata Camry Accord"
foreach lm of local car {
display "`lm'"
}
global gm "Sonata Camry Accord"
foreach gm of global car {
display "`gm'"
}
foreach str in "Sonata Camry Accord" {
display "`str'"
}
forvalues num = 1/100 {
...
}
STATA GRAPHICS
Graphics Basics
Scatter and Two-way Plotting (Examples)
Plotting by Functions