\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, 7.09901E-08) (2048, 1.04063E-05) (4096, 0.000465134) (8192, 0.008722029) (16384, 0.029783939) (32768, 0.064471348) (65536, 0.102330153) }; % Samsung \addplot[smooth, very thick, color=green] coordinates { (64, 0) (128, 0) (256, 0) (512, 0) (1024, 3.62517E-08) (2048, 3.02603E-06) (4096, 8.20644E-05) (8192, 0.000688446) (16384, 0.003470714) (32768, 0.009178362) (65536, 0.018137646) }; % Hynix \addplot[smooth, very thick, color=orange] coordinates { (64, 0) (128, 0) (256, 0) (512, 2.56114E-10) (1024, 3.02272E-07) (2048, 4.2077E-05) (4096, 0.000996151) (8192, 0.005669198) (16384, 0.016854079) (32768, 0.030819036) (65536, 0.047067711) }; \end{axis} \end{tikzpicture}