From 4bbff9f380940a0b1d7909eca67b11e0df21ed3a Mon Sep 17 00:00:00 2001 From: Nicholas Karlson Date: Sun, 9 Nov 2025 15:06:36 -0800 Subject: [PATCH] docs: fix README escapes; ensure Makefile recipe tabs; badges render --- Makefile | 6 ++++++ README.md | 11 +++++++++++ docs/README.md | 4 ++++ 3 files changed, 21 insertions(+) diff --git a/Makefile b/Makefile index f148fe1..78fe876 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,9 @@ +.PHONY: help +help: + @echo "Available targets:" + @echo " ch13 - full Chapter 13 run (plots saved)" + @echo " ch13-ci - tiny smoke (fast) for CI" + .PHONY: ch13-ci ch13-ci: python scripts/sim_stroop.py --n-subjects 6 --n-trials 10 diff --git a/README.md b/README.md index ed2d5cd..f474d71 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,15 @@ Plain Python scripts that mirror R recipes so non-specialists can run analyses f save figures/tables, and compare results across R/Python. ## Quick start + # macOS/Linux + python -m venv .venv && source .venv/bin/activate python -m pip install -U pip pip install -r requirements.txt # Windows (Git Bash or PowerShell) + python -m venv .venv; source .venv/Scripts/activate 2>/dev/null || .venv\\Scripts\\Activate.ps1 python -m pip install -U pip pip install -r requirements.txt @@ -17,6 +20,14 @@ pip install -r requirements.txt # Example ## License + MIT © 2025 Nicholas Elliott Karlson python scripts/ch01_introduction.py + + +![CI](https://github.com/nicholaskarlson/PyStatsV1/actions/workflows/ci.yml/badge.svg) + +![Tag](https://img.shields.io/github/v/tag/nicholaskarlson/PyStatsV1?label=release) + + diff --git a/docs/README.md b/docs/README.md index a1c24ce..8655124 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,5 +1,9 @@ # PyStatsV1 Docs +![CI](https://github.com/nicholaskarlson/PyStatsV1/actions/workflows/ci.yml/badge.svg) +![Tag](https://img.shields.io/github/v/tag/nicholaskarlson/PyStatsV1?label=release) + + - Chapter 12 — Diagnostics - `scripts/ch12_diagnostics.py` - Chapter 13 — Within-Subject Stroop