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,7 +1,13 @@
\documentclass[tikz]{standalone}
\input{../PlotPreamble.tex}
\begin{document}
\small
\begin{tikzpicture}
\begin{axis}[
width=6.5cm,
height=6.5cm,
ybar,
scale only axis,
xtick align=inside,
xlabel ={Measurement point},
ylabel ={RSSI in \si{\dBm}},
legend pos=north east,
@@ -14,6 +20,8 @@
%ymin=0,
xtick={1,2,3,4,5,6,7},
]
\addplot [blue, fill=blue] table[x=X,y=RSSI,col sep=comma]{plots/data/BSTMean1.csv};
\addplot [ta2skyblue, fill=ta2skyblue] table[x=X,y=RSSI,col sep=comma]{../data/BSTMean1.csv};
%\addplot [blue, mark=x] table[x=X,y=RSSI,col sep=comma]{../data/BSTMean1.csv};
\end{axis}
\end{tikzpicture}
\end{tikzpicture}
\end{document}