From 73797ec815646dddda327fd662670b8effb1b5be Mon Sep 17 00:00:00 2001 From: Cangyuan Li Date: Fri, 31 Jan 2025 20:48:24 -0800 Subject: [PATCH] docs: fix missing math mode --- python/rapidstats/_metrics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/rapidstats/_metrics.py b/python/rapidstats/_metrics.py index aa38076..3842021 100644 --- a/python/rapidstats/_metrics.py +++ b/python/rapidstats/_metrics.py @@ -125,9 +125,9 @@ class ConfusionMatrix: dor : float Diagnostic Odds Ratio; \( \frac{LR+}{LR-} \) ppr : float - Predicted Positive Ratio; Proportion that are predicted positive; \( \frac{TP + FP}{TN + FP + FN + TP}) + Predicted Positive Ratio; Proportion that are predicted positive; \( \frac{TP + FP}{TN + FP + FN + TP} \) pnr : float - Predicted Negative Ratio; Proportion that are predicted negative; \( \frac{TN + FN}{TN + FP + FN + TP}) + Predicted Negative Ratio; Proportion that are predicted negative; \( \frac{TN + FN}{TN + FP + FN + TP} \) """ tn: float