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

20
tex/plots/BSTPlot1.pgf Normal file
View File

@@ -0,0 +1,20 @@
\begin{tikzpicture}
\begin{axis}[
scale only axis,
xlabel ={Measurement point},
ylabel ={Distance in \si{\meter}},
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 [color=black] table[x=X,y=GT,col sep=comma]{plots/data/BSTMean1.csv}; \addlegendentry{Groundtruth}
\addplot [color=blue] table[x=X,y=MeanDist,col sep=comma]{plots/data/BSTMean1.csv}; \addlegendentry{Mean distance}
\addplot [color=orange, mark=x, only marks, mark size=1pt] table[x=X,y=Y,col sep=comma]{plots/data/BSTData1.csv}; \addlegendentry{Measured distance}
\end{axis}
\end{tikzpicture}