78 lines
2.0 KiB
TeX
78 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, 0)
|
|
(4096, 0)
|
|
(8192, 0)
|
|
(16384, 5.64614E-9)
|
|
(32768, 1.10308E-6)
|
|
(65536, 7.05115E-5)
|
|
};
|
|
% Samsung
|
|
\addplot[smooth, very thick, color=green]
|
|
coordinates {
|
|
(64, 0)
|
|
(128, 0)
|
|
(256, 0)
|
|
(512, 0)
|
|
(1024, 0)
|
|
(2048, 0)
|
|
(4096, 0)
|
|
(8192, 1.16415E-10)
|
|
(16384, 1.22935E-08)
|
|
(32768, 6.84918E-07)
|
|
(65536, 1.82253E-05)
|
|
};
|
|
% Hynix
|
|
\addplot[smooth, very thick, color=orange]
|
|
coordinates {
|
|
(64, 0)
|
|
(128, 0)
|
|
(256, 0)
|
|
(512, 0)
|
|
(1024, 0)
|
|
(2048, 0)
|
|
(4096, 0)
|
|
(8192, 0)
|
|
(16384, 4.17931E-09)
|
|
(32768, 1.12945E-06)
|
|
(65536, 8.12418E-05)
|
|
};
|
|
|
|
\legend{
|
|
Vendor-A,
|
|
Vendor-B,
|
|
Vendor-C
|
|
}
|
|
|
|
\end{axis}
|
|
\end{tikzpicture} |