Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix error in contingency tables McNemar Test #14

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified w02_evaluation/t03_benchmarking.pdf
Binary file not shown.
8 changes: 4 additions & 4 deletions w02_evaluation/t03_benchmarking.tex
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@
\begin{minipage}{0.74\textwidth}
\begin{itemize}
\item A: $\#$obs.\ correctly classified by both
\item B: $\#$obs.\ misclassified by model 1 but not by model 2
\item C: $\#$obs.\ misclassified by model 2 but not by model 1
\item B: $\#$obs.\ misclassified by model 2 but not by model 1
\item C: $\#$obs.\ misclassified by model 1 but not by model 2
\item D: $\#$obs.\ misclassified by both
\end{itemize}
\end{minipage}
Expand All @@ -126,8 +126,8 @@
\begin{minipage}[c]{0.625\linewidth}
Error of each model can be computed as follows:
\begin{itemize}
\item Model 1: (A+B)/(A+B+C+D)
\item Model 2: (A+C)/(A+B+C+D)
\item Model 1: (C+D)/(A+B+C+D)
\item Model 2: (B+D)/(A+B+C+D)
\end{itemize}

Even if the models have the \textbf{same} errors (indicating equal performance), cells B and C may be different because the models may misclassify different instances.
Expand Down