Moved pgf plots into own tex files

This commit is contained in:
2020-03-11 18:17:31 +01:00
parent df12e7ef15
commit 70eca36151
18 changed files with 186 additions and 84 deletions

View File

@@ -1,3 +1,7 @@
\documentclass[tikz]{standalone}
\input{../PlotPreamble.tex}
\begin{document}
\small
\begin{tikzpicture}
\definecolor{cdfPlot1}{rgb}{1,0,0}
\definecolor{cdfPlot2}{rgb}{1,0.25,0}
@@ -8,9 +12,8 @@
\definecolor{cdfPlot7}{rgb}{0,0.666,0.666}
\definecolor{cdfPlot8}{rgb}{0,1,0.5}
\begin{axis}[
scale only axis,
width=0.8\textwidth,
height=0.4\textwidth,
width=15.7cm,
height=6.5cm,
xlabel ={Distance error in \si{\meter}},
ylabel ={CDF},
legend pos=south east,
@@ -21,13 +24,14 @@
enlarge x limits=false,
enlarge y limits=false,
]
\addplot [color=cdfPlot1, dashed] table[x=X,y=Y,col sep=comma]{plots/data/1AC8260IntPixel2.csv}; \addlegendentry{AC 8260 int Pixel 2}
\addplot [color=cdfPlot2, solid ] table[x=X,y=Y,col sep=comma]{plots/data/2AC8260IntPixel3.csv}; \addlegendentry{AC 8260 int Pixel 3}
\addplot [color=cdfPlot3, dashed] table[x=X,y=Y,col sep=comma]{plots/data/3AC82602dBiPixel2.csv}; \addlegendentry{AC 8260 2dBi Pixel 2}
\addplot [color=cdfPlot4, solid ] table[x=X,y=Y,col sep=comma]{plots/data/4AC82602dBiPixel3.csv}; \addlegendentry{AC 8260 2dBi Pixel 3}
\addplot [color=cdfPlot5, dashed] table[x=X,y=Y,col sep=comma]{plots/data/5AC9462IntPixel2.csv}; \addlegendentry{AC 9462 int Pixel 2}
\addplot [color=cdfPlot6, solid ] table[x=X,y=Y,col sep=comma]{plots/data/6AC9462IntPixel3.csv}; \addlegendentry{AC 9462 int Pixel 3}
\addplot [color=cdfPlot7, dashed] table[x=X,y=Y,col sep=comma]{plots/data/7AC94622dBiPixel2.csv}; \addlegendentry{AC 9462 2dBi Pixel 2}
\addplot [color=cdfPlot8, solid ] table[x=X,y=Y,col sep=comma]{plots/data/8AC94622dBiPixel3.csv}; \addlegendentry{AC 9462 2dBi Pixel 3}
\addplot [color=cdfPlot1, dashed] table[x=X,y=Y,col sep=comma]{../data/1AC8260IntPixel2.csv}; \addlegendentry{AC 8260 int Pixel 2}
\addplot [color=cdfPlot2, solid ] table[x=X,y=Y,col sep=comma]{../data/2AC8260IntPixel3.csv}; \addlegendentry{AC 8260 int Pixel 3}
\addplot [color=cdfPlot3, dashed] table[x=X,y=Y,col sep=comma]{../data/3AC82602dBiPixel2.csv}; \addlegendentry{AC 8260 2dBi Pixel 2}
\addplot [color=cdfPlot4, solid ] table[x=X,y=Y,col sep=comma]{../data/4AC82602dBiPixel3.csv}; \addlegendentry{AC 8260 2dBi Pixel 3}
\addplot [color=cdfPlot5, dashed] table[x=X,y=Y,col sep=comma]{../data/5AC9462IntPixel2.csv}; \addlegendentry{AC 9462 int Pixel 2}
\addplot [color=cdfPlot6, solid ] table[x=X,y=Y,col sep=comma]{../data/6AC9462IntPixel3.csv}; \addlegendentry{AC 9462 int Pixel 3}
\addplot [color=cdfPlot7, dashed] table[x=X,y=Y,col sep=comma]{../data/7AC94622dBiPixel2.csv}; \addlegendentry{AC 9462 2dBi Pixel 2}
\addplot [color=cdfPlot8, solid ] table[x=X,y=Y,col sep=comma]{../data/8AC94622dBiPixel3.csv}; \addlegendentry{AC 9462 2dBi Pixel 3}
\end{axis}
\end{tikzpicture}
\end{tikzpicture}
\end{document}