Hansl
1 program
Added 2026-02-13T18:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: gretl scripting language
Provenance: commit 886ad228da · authored 2026-02-13T10:06:24+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
OLS Regression Example
Provenance: commit 886ad228da · authored 2026-02-13T10:06:24+01:00 · agent claude-code · model sonnet · WebSearch disabled
# Simple OLS regression example
# Compute means
open data4-1
list xlist = 2 3 4
ols 1 xlist
# Display results
pvalue $test 0.05
if $test < 0.05
print "Model is significant at 5% level"
endif
# Compute residuals
series resid = $uhat
print resid --byobs