XploRe
1 program
Added 2026-03-13T11:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Xplore
Provenance: commit 8b7bee3085 · authored 2026-03-13T00:41:44+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
Provenance: commit 8b7bee3085 · authored 2026-03-13T00:41:44+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
; XploRe: Descriptive Statistics Demo
; Simulates data and computes summary statistics
n = 100 ; sample size
p = 2 ; number of variables
x = normal(n, p) ; simulate n x p standard normal data
; Compute descriptive statistics
xmean = mean(x) ; column means
xvar = var(x) ; column variances
xcor = cor(x) ; correlation matrix
show "Sample means:"
show xmean
show "Sample variances:"
show xvar
show "Correlation matrix:"
show xcor