SHAZAM
1 program
Added 2026-03-17T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 61ddc489ec · authored 2026-03-17T01:20:45+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Descriptive Statistics and OLS Regression
Provenance: commit 61ddc489ec · authored 2026-03-17T01:20:45+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
? SHAZAM: Descriptive Statistics and Ordinary Least Squares
? Define sample with 20 observations
SAMPLE 1 20
? Generate predictor as observation number
GENR X = T
? Generate response variable
GENR Y = 5.0 + 2.5*X
? Compute descriptive statistics
STAT Y X
? Run OLS regression of Y on X with residual statistics
OLS Y X / RSTAT
? Print results
PRINT Y X
STOP