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/BSTPlot1.pgf
2020-03-17 10:11:30 +01:00

26 lines
830 B
Plaintext

\documentclass[tikz]{standalone}
\input{../PlotPreamble.tex}
\begin{document}
\small
\begin{tikzpicture}
\begin{axis}[
width=9cm,
height=6.5cm,
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]{../data/BSTMean1.csv}; \addlegendentry{Groundtruth}
\addplot [color=blue] table[x=X,y=MeanDist,col sep=comma]{../data/BSTMean1.csv}; \addlegendentry{Mean distance}
\addplot [color=orange, mark=x, only marks, mark size=1.5pt, line width=0.5pt] table[x=X,y=Y,col sep=comma]{../data/BSTData1.csv}; \addlegendentry{Measured distance}
\end{axis}
\end{tikzpicture}
\end{document}