You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,25 @@ pystatsv1-docs
48
48
49
49
Tip: the online docs are always available via the ReadTheDocs badge at the top of this README.
50
50
51
+
## 🧠 Psychology support helpers (v0.23.0)
52
+
53
+
PyStatsV1 v0.23.0 adds a small public `pystatsv1.psych` helper layer for proof-first psychology and APA-style companion labs. These helpers are intentionally modest: they do **not** replace SciPy, statsmodels, Pingouin, or R for inferential statistics. They provide a reusable bridge for identity receipts, descriptive summaries, stable JSON receipts, and numeric parity comparisons.
54
+
55
+
```python
56
+
from pystatsv1.psych import (
57
+
package_identity,
58
+
describe_by_group,
59
+
write_json_receipt,
60
+
compare_numeric_results,
61
+
)
62
+
```
63
+
64
+
This supports the companion-lab positioning:
65
+
66
+
> Python for the workflow. R for verification. PyStatsV1 for the bridge.
67
+
68
+
See `docs/source/psych_support_helpers.rst` and `docs/source/release_notes.rst` for details.
69
+
51
70
## Full repository (scripts, Makefile targets, tests, docs)
0 commit comments