Skip to main content

PyStatsV1: applied statistics labs in Python.

Project description

PyStatsV1 — Applied Statistics (R ↔ Python)

CI GitHub release Docs PyPI - Version PyPI - Python Version

PyStatsV1 provides plain, transparent Python scripts that mirror classical R textbook analyses, making it easy for students, tutors, and practitioners to:

  • run statistical analyses from the command line,
  • generate synthetic data for teaching,
  • produce figures and JSON summaries,
  • and compare outputs across R/Python.

📦 Install

The simplest way to get started is from PyPI:

pip install pystatsv1

This installs the lightweight pystatsv1 helper package used by the labs (for example, the shared paths utilities).

If you want the full chapter-by-chapter repository with simulators, Makefiles, tests, and docs, clone from GitHub and install in editable mode:

git clone https://github.com/pystatsv1/PyStatsV1.git
cd PyStatsV1
pip install -e .

The project follows a chapter-based structure — each chapter includes a simulator, an analyzer, Makefile targets, and CI smoke tests.

Who is this for?

PyStatsV1 is designed for:

  • Students who want to run textbook-style analyses in real Python code.
  • Instructors / TAs who need reproducible demos and synthetic data for lectures, labs, or assignments.
  • Practitioners who prefer plain scripts and command-line tools over large frameworks.
  • R users who want a clear, line-by-line bridge from R examples into Python.

🚀 Quick Start

1. Create and activate a virtual environment

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)

# Git Bash first; PowerShell as fallback
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

📊 Chapter Scripts

Chapter 1 — Introduction

python -m scripts.ch01_introduction

Chapter 13 — Within-subjects & Mixed Models

make ch13-ci   # tiny CI smoke
make ch13      # full demo

Chapter 14 — Tutoring A/B Test (two-sample t-test)

make ch14-ci
make ch14

Chapter 15 — Reliability (Cronbach’s α, ICC, Bland–Altman)

make ch15-ci
make ch15

For an overview of what each chapter contains:

  • CHAPTERS.md — coverage, commands, and outputs
  • ROADMAP.md — planned chapters (e.g., Ch16 Epidemiology RR)

📚 Project Docs & Policies

PyStatsV1 is structured with a core set of documentation:

  • CONTRIBUTING.md — environment setup, development workflow, Makefile usage, PR process.
  • CODE_OF_CONDUCT.md — community expectations & enforcement.
  • CHAPTERS.md — high-level description of all implemented chapters.
  • ROADMAP.md — the future of the project: upcoming chapters & milestones.
  • SECURITY.md — how to privately report vulnerabilities.
  • SUPPORT.md — how to get help or ask questions.
  • Case Study Template: docs/case_study_template.md — structure for building new chapter teaching documentation.

If you want to contribute, start with CONTRIBUTING.md and check issues labeled good first issue or help wanted.


🤝 Contribute in 5 minutes

Want to help but not sure where to start?

  1. Browse issues labeled good first issue or help wanted.

  2. Pick one small thing (typo, doc improvement, tiny refactor, or a missing test).

  3. Fork & clone the repo.

  4. Create and activate a virtual environment, then:

    pip install -r requirements.txt
    make lint
    make test
    
  5. Make your change, and ensure make lint and make test both pass.

  6. Open a Pull Request and briefly describe:

    • what you changed,
    • how you tested it,
    • which chapter(s) it touches, if any.

Maintainer promise: we’ll give constructive feedback and help first-time contributors land their PRs.


🗺️ Roadmap snapshot

High-level upcoming work (see ROADMAP.md for details):

  • ✅ v0.17.0 — Onboarding and issue templates
  • ⏳ Next steps:
    • Additional regression chapters (logistic, Poisson, etc.)
    • Power and sample size simulations
    • Epidemiology-focused examples (risk ratios, odds ratios)
    • More teaching case studies using docs/case_study_template.md

If you’d like to champion a specific chapter or topic, open an issue and we can design it together.


🧪 Development Workflow

From the project root:

make lint    # ruff check
make test    # pytest

To run chapter smoke tests:

make ch13-ci
make ch14-ci
make ch15-ci

All synthetic data is written to:

  • data/synthetic/
  • outputs/<chapter>/

…and ignored by Git.


🔀 Pull Requests

Every pull request should:

  • pass make lint and make test,
  • avoid committing generated outputs,
  • follow the structure described in CONTRIBUTING.md.

GitHub provides:

  • 🐛 Bug report template
  • 💡 Feature request template
  • 📘 Good first issue template
  • 🔀 Pull request template

🔒 Security

If you believe you’ve found a security issue, do not open a public GitHub issue.
Follow the private disclosure process described in SECURITY.md.


💬 Community & support

  • Questions?
    Open a GitHub issue with the question label.

  • Using PyStatsV1 in a course?
    We’d love to hear about it — open an issue titled Course report: <institution> or mention it in your PR description.

  • Feature ideas / chapter requests?
    Open an issue with the enhancement or chapter-idea label.

As the project grows, we plan to enable GitHub Discussions and possibly a lightweight chat space for instructors and contributors.


📜 License

MIT © 2025 Nicholas Elliott Karlson

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pystatsv1-0.18.2.tar.gz (25.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pystatsv1-0.18.2-py3-none-any.whl (6.8 kB view details)

Uploaded Python 3

File details

Details for the file pystatsv1-0.18.2.tar.gz.

File metadata

  • Download URL: pystatsv1-0.18.2.tar.gz
  • Upload date:
  • Size: 25.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pystatsv1-0.18.2.tar.gz
Algorithm Hash digest
SHA256 281b2fe67c91fafc763cbf5a95ad70b9716240278b7be4fde8709fcd3281370f
MD5 e97c7fc820b20c85954b6dc422baef1f
BLAKE2b-256 e05303aee1d35deb4fe30d5eb3c9529530f0e12ea2c09c152e4a9c52ec23135b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pystatsv1-0.18.2.tar.gz:

Publisher: pypi-publish.yml on pystatsv1/PyStatsV1

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pystatsv1-0.18.2-py3-none-any.whl.

File metadata

  • Download URL: pystatsv1-0.18.2-py3-none-any.whl
  • Upload date:
  • Size: 6.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pystatsv1-0.18.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c89c3f265038c3757905a67757dd92c9383eaff54df07c647ad408efff864563
MD5 a40cac6d79a27bb2b5a69194f56c8bbd
BLAKE2b-256 40117dd0f09f02522e261a39f7dbbbc269d1cc00df3491ffa162faa1df89ed57

See more details on using hashes here.

Provenance

The following attestation bundles were made for pystatsv1-0.18.2-py3-none-any.whl:

Publisher: pypi-publish.yml on pystatsv1/PyStatsV1

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page