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

72 lines
2.0 KiB
TeX

\begin{tikzpicture}
\begin{axis}[
%xmode=log,
%ymode=log,
xlabel={Retention Time [\unit{\milli\second}]},
ylabel={Retention Error Rate},
xmin=0, xmax=70000,
ymin=1e-10, ymax=0.15,
legend pos=north west,
legend style={font=\footnotesize, draw=none, fill=none},
width=1.0\linewidth,
height=5.0cm,
yticklabel style={
/pgf/number format/fixed,
/pgf/number format/precision=5
},
scaled y ticks=false,
xticklabel style={
/pgf/number format/fixed,
/pgf/number format/precision=5
},
scaled x ticks=false
]
% Micron
\addplot[smooth, very thick, color=blue]
coordinates {
(64, 0)
(128, 0)
(256, 0)
(512, 0)
(1024, 0)
(2048, 6.17001E-10)
(4096, 2.59827E-07)
(8192, 3.35296E-05)
(16384, 0.001206623)
(32768, 0.011528183)
(65536, 0.036253586)
};
% Samsung
\addplot[smooth, very thick, color=green]
coordinates {
(64, 0)
(128, 0)
(256, 0)
(512, 0)
(1024, 0)
(2048, 1.42027E-09)
(4096, 1.59652E-07)
(8192, 7.78309E-06)
(16384, 0.000152732)
(32768, 0.001065224)
(65536, 0.004212467)
};
% Hynix
\addplot[smooth, very thick, color=orange]
coordinates {
(64, 0)
(128, 0)
(256, 0)
(512, 0)
(1024, 0)
(2048, 8.26549E-10)
(4096, 7.55081E-07)
(8192, 0.000105995)
(16384, 0.001462461)
(32768, 0.006927195)
(65536, 0.017466683)
};
\end{axis}
\end{tikzpicture}