Files
drammeasure-paper/plots/hynix_60.tex
2025-03-24 20:58:27 +00:00

91 lines
2.6 KiB
TeX

\begin{tikzpicture}
\begin{axis}[
xmode=log,
ymode=log,
xlabel={Retention Time [\unit{\milli\second}]},
ylabel={Number of Errors},
xmin=100, xmax=100000,
ymin=1, ymax=10000000000,
legend pos=north west,
legend style={font=\footnotesize, draw=none, fill=none},
width=1.0\linewidth,
height=5.0cm,
]
% 0x0: Nothing because true cell
\addplot[smooth, very thick]
coordinates {
(64, 0)
(128, 0)
(256, 0)
(512, 0)
(1024, 0)
(2048, 0)
(4096, 0)
(8192, 0)
(16384, 0)
(32768, 0)
(65536, 0.0000000001)
};
% 0x5
\addplot[smooth, very thick, color=blue, dashed]
coordinates {
(64, 0)
(128, 0)
(256, 0)
(512, 0)
(1024, 0)
(2048, 17)
(4096, 3536)
(8192, 864880)
(16384, 17685948)
(32768, 115575907)
(65536, 280834953)
};
% 0xa
\addplot[smooth, very thick, color=orange, dashed]
coordinates {
(64, 0)
(128, 0)
(256, 0)
(512, 0)
(1024, 0)
(2048, 13)
(4096, 5676)
(8192, 582001)
(16384, 16695026)
(32768, 105919134)
(65536, 278527004)
};
% 0xf
\addplot[smooth, very thick, color=green]
coordinates {
(64, 0)
(128, 0)
(256, 0)
(512, 0)
(1024, 0)
(2048, 29)
(4096, 24967)
(8192, 1845179)
(16384, 45605514)
(32768, 248909752)
(65536, 542267164)
};
% rnd
\addplot[smooth, very thick, color=red]
coordinates {
(64, 0)
(128, 0)
(256, 0)
(512, 0)
(1024, 0)
(2048, 8)
(4096, 5422)
(8192, 1301985)
(16384, 20629644)
(32768, 95138514)
(65536, 271274219)
};
\end{axis}
\end{tikzpicture}