-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtable-1.tex
22 lines (22 loc) · 997 Bytes
/
table-1.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
\documentclass{article}
\usepackage{graphicx}
\usepackage{multirow}
\usepackage[top=0.5cm, bottom=0.5cm, outer=0.5cm, inner=0.5cm, heightrounded,
marginparwidth=0.5cm, marginparsep=0.2cm]{geometry}
\begin{document}
\resizebox{20cm}{!} {\begin{tabular}{|l|*{3}{l}|}
\hline
& gnparser & gbif-parser & biodiversity \\
\hline
\textit{True Positive} & 978 & 955 & 971 \\
\textit{True Negative} & 13 & 12 & 13 \\
\textit{False Positive}& 9 & 32 & 16 \\
\textit{False Negative}& 0 & 1 & 0 \\
\textit{Precision} & 0.989 & 0.968 & 0.984 \\
\textit{Recall} & 1.0 & 0.999 & 1.0 \\
\textit{F1} & 0.994 & 0.983 & 0.992 \\
\textit{Accuracy} & 0.989 & 0.967 & 0.984 \\
\hline
\end{tabular}
}
\end{document}