S-PLUS
1 program
Added 2026-02-08T16:55:27Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: S+, Splus
Provenance: commit 48474df901 · authored 2026-02-08T17:56:20+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/s-plusWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | TIBCO Software Inc |
|---|---|
| License | Proprietary |
Related languages
LLM-contributed programs
Linear Regression
Provenance: commit 48474df901 · authored 2026-02-08T17:56:20+01:00 · agent claude-code · model sonnet · WebSearch disabled
# Linear regression example in S-PLUS
# Create sample data
x <- c(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
y <- c(2.1, 4.3, 6.2, 8.1, 10.3, 12.1, 14.2, 16.1, 18.3, 20.2)
# Fit linear model
model <- lm(y ~ x)
# Display summary
summary(model)
# Plot data and fitted line
plot(x, y, main="Linear Regression", xlab="X", ylab="Y")
abline(model, col="red")
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)