πŸ“š Logistic Regression & Probability Translators

These references reinforce the storyline behind The Probability Translator by covering the math behind the sigmoid function, practical implementation guides, and recommended follow-up material for decision thresholds and interpretability.


Table of Contents

  1. Foundational Theory
  2. Hands-On Guides & Tooling
  3. Decision Thresholds & Metrics
  4. Interpretability & Clinical Context

1. Foundational Theory

ResourceTypeNotesAccess
An Introduction to Statistical Learning (2nd ed.)TextbookChapter 4 introduces logistic regression, maximum likelihood estimation, and medical case studies.https://www.statlearning.com/
The Elements of Statistical LearningTextbookChapter 4 details generalized linear models and regularized logistic regression.https://hastie.su.domains/ElemStatLearn/
Pattern Recognition and Machine Learning by C. BishopTextbookSection 4.3 develops logistic regression from a probabilistic perspective.https://www.microsoft.com/en-us/research/publication/pattern-recognition-machine-learning/
Machine Learning by T. MitchellTextbookChapter 6 explains the log-likelihood objective and gradient updates.http://www.cs.cmu.edu/~tom/mlbook.html

2. Hands-On Guides & Tooling

ResourceFocusLanguage
Scikit-learn User Guide – Logistic RegressionRegularization, solver comparison, multiclass strategies.πŸ‡¬πŸ‡§ English
Statsmodels GLM Documentation – LogitGLM formulation, link functions, inference outputs.πŸ‡¬πŸ‡§ English
scikit-learn Tutorial: ClassificationEnd-to-end example translating feature engineering into predictions.πŸ‡¬πŸ‡§ English
Google ML Crash Course – Logistic RegressionSigmoid intuition, loss, regularization, short exercises.πŸ‡¬πŸ‡§ English

3. Decision Thresholds & Metrics

ResourceWhy it mattersAccess
Google ML Crash Course – Thresholds and the Confusion MatrixVisualizes how threshold tuning affects true/false positives, mirroring the Risk Manager storyline.πŸ‡¬πŸ‡§ English
Google ML Crash Course – Accuracy, Precision, RecallClarifies evaluation metrics used after translating probabilities into decisions.πŸ‡¬πŸ‡§ English
scikit-learn Model Evaluation GuideCovers ROC curves, calibration, and threshold-dependent metrics.πŸ‡¬πŸ‡§ English
ROC and AUC ExplainedConnects ROC analysis to the chapter’s emphasis on balancing risk.πŸ‡¬πŸ‡§ English

4. Interpretability & Clinical Context

ResourceHighlightLanguage
IBM Think – What Is Logistic Regression?Business and healthcare applications, odds interpretation, overfitting risks.πŸ‡¬πŸ‡§ English
World Health Organization – Risk Prediction ModelsDiscusses logistic models for medical decision support, aligning with the clinic narrative.πŸ‡¬πŸ‡§ English
Nature Digital Medicine – Predicting Hospital ReadmissionsCase study showing logistic regression in healthcare resource planning.πŸ‡¬πŸ‡§ English

Note: All links were re-checked in October 2025. For licensed content, consult institutional libraries or open-access repositories.