This commit is contained in:
2020-03-11 12:00:52 +01:00
parent 9290738e43
commit df12e7ef15
11 changed files with 212 additions and 54 deletions

View File

@@ -0,0 +1,19 @@
\begin{tikzpicture}
\begin{axis}[
ybar,
scale only axis,
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 [blue, fill=blue] table[x=X,y=RSSI,col sep=comma]{plots/data/BSTMean1.csv};
\end{axis}
\end{tikzpicture}