28 lines
663 B
Plaintext
28 lines
663 B
Plaintext
\documentclass[tikz]{standalone}
|
|
\input{../PlotPreamble.tex}
|
|
\begin{document}
|
|
\small
|
|
\begin{tikzpicture}
|
|
\begin{axis}[
|
|
width=6.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,
|
|
%ymin=0,
|
|
xtick={1,2,3,4,5,6,7},
|
|
]
|
|
\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{document} |