From f8819ef78471dbd1f3c37750418618421385f69b Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Thu, 6 Jun 2024 15:49:21 +0200 Subject: [PATCH] Remove whitespace between letters of two-letter variables --- book.org | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/book.org b/book.org index 0d88bfe..4ec176b 100644 --- a/book.org +++ b/book.org @@ -2439,17 +2439,17 @@ The latter is also called sensitivity if used in combination with specificity (E #+NAME: eq:precision \begin{equation} -\frac{TP}{TP+FP} +\frac{\mathit{TP}}{\mathit{TP}+\mathit{FP}} \end{equation} #+NAME: eq:recall \begin{equation} -\frac{TP}{TP+FN} +\frac{\mathit{TP}}{\mathit{TP}+\mathit{FN}} \end{equation} #+NAME: eq:specificity \begin{equation} -\frac{TN}{TN+FP} +\frac{\mathit{TN}}{\mathit{TN}+\mathit{FP}} \end{equation} Many studies for pass/fail prediction use accuracy (Equation\nbsp{}[[eq:accuracy]]) as a single performance metric. @@ -2459,7 +2459,7 @@ This is clearly a bad classifier, but it will nonetheless have an accuracy of 75 #+NAME: eq:accuracy \begin{equation} -\frac{TP+TN}{TP+TN+FP+FN} +\frac{\mathit{TP}+\mathit{TN}}{\mathit{TP}+\mathit{TN}+\mathit{FP}+\mathit{FN}} \end{equation} In our study, we will therefore use two more complex metrics that take these effects into account: balanced accuracy and F_1-score.