SPSS Syntax

1 program Added 2025-10-30T07:28:22Z Model: google/gemini-2.5-proTemp: 0.4 Evidence Report issue View issues
Aliases: SPSS Command Syntax
Provenance: commit 555c974dd3 · authored 2025-10-30T08:28:22+01:00 · model google/gemini-2.5-pro

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

SPSS (0.34)Stata (0.20)CLIST (0.18)Razor (0.17)Arden Syntax (0.17)

LLM-contributed programs

SPSS Script for Correlation Analysis

Provenance: commit 555c974dd3 · authored 2025-10-30T08:28:22+01:00 · model google/gemini-2.5-pro · Temp 0.4
code.sps · added: 2025-10-30T07:28:22Z
* Pearsons correlation.

* One-tailed test.
CORRELATIONS
	/VARIABLES=Exam Anxiety Exam Performance
	/PRINT=ONETAIL NOSIG
	/MISSING=PAIRWISE.

* Two-tailed test.
CORRELATIONS
	/VARIABLES=Exam Anxiety Exam Performance
	/PRINT=TWOTAIL SIG
	/MISSING=PAIRWISE.

* Bivariate Correlation with a control variable (Partial Correlation).

PARTIAL CORR
	/VARIABLES=Exam Performance Exam Anxiety BY Time Spent Revising
	/SIGNIFICANCE=TWOTAIL
	/MISSING=LISTWISE.

* Spearman's correlation.

NONPAR CORR
	/VARIABLES=liar creativity
	/PRINT=SPEARMAN TWOTAIL NOSIG
	/MISSING=PAIRWISE.


* Kendall's tau.

NONPAR CORR
	/VARIABLES=liar creativity
	/PRINT=KENDALL TWOTAIL NOSIG
	/MISSING=PAIRWISE.

Contribute — propose a file extension

Tell us where to find evidence about SPSS Syntax (mapped to pl/spss_syntax). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/SPSS Syntax/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← SPSS SPWN →