This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
FtmPrologic/tex/plots/BSTPlot2Rssi.pgf
2020-03-25 17:18:17 +01:00

29 lines
691 B
Plaintext

\documentclass[tikz]{standalone}
\input{../PlotPreamble.tex}
\begin{document}
\small
\begin{tikzpicture}
\begin{axis}[
width=7.5cm,
height=6.5cm,
ybar,
bar width=0.75,
xtick align=inside,
xlabel ={Measurement point},
ylabel ={RSSI in \si{\dBm}},
legend pos=north east,
xmajorgrids=true,
%xminorgrids=true,
ymajorgrids=true,
%yminorgrids=true,
%enlarge x limits=false,
%enlarge y limits=false,
ymax=-55,
ymin=-75,
xtick={1,2,3,4,5,6,7,8,9,10,11,12,13},
]
\addplot [ta2skyblue, fill=ta2skyblue] table[x=X,y=RSSI,col sep=comma]{../data/BSTMean2.csv};
%\addplot [blue, mark=x] table[x=X,y=RSSI,col sep=comma]{../data/BSTMean2.csv};
\end{axis}
\end{tikzpicture}
\end{document}