1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
\section{Resultat}
\begin{figure}
\centering
\begin{tikzpicture}
\begin{axis}[
ylabel=Tid (s),
legend pos = outer north east,
ybar interval=0.75
]
\addplot+ [] coordinates {(1, 1.25) (2, 0.34) (3, 1.33) (4, 2.06) (5, 0.85)
(6, 1.74) (7, 2.55) (8, 1.97) (9, 1.28) (10, 1)};
\addlegendentry{Körning 1}
\addplot+ [] coordinates {(1, 1.27) (2, 0.30) (3, 1.44) (4, 2.14) (5, 1.01)
(6, 2.22) (7, 2.83) (8, 2.14) (9, 1.32) (10, 1)};
\addlegendentry{Körning 2}
\end{axis}
\end{tikzpicture}
\caption{Genomsnittlig segmentstid för de två körningarna från redovisningen.}
\label{fig:seg_times}
\end{figure}
\begin{figure}
\centering
\begin{tikzpicture}
\begin{axis} [xmin=0, xmax=15.5,ymin=10,ymax=20, xlabel=Varv, ylabel={Tid (s)},
legend pos=outer north east]
\addplot+ [blue, mark options={blue}, mark=square*] table [col sep=comma, x index=0, y index = 1] {stats/lap.csv};
\addlegendentry{Körning 1}
\addplot+ [red, mark options={red}, mark=*] table [col sep=comma, x index=0, y index = 2] {stats/lap.csv};
\addlegendentry{Körning 2}
\end{axis}
\end{tikzpicture}
\caption{Varvtider för de två körningarna från redovisningen, inklusive
kalibreringsvarven.}
\label{fig:laptimes-calibration}
\vspace*{\floatsep}% https://tex.stackexchange.com/q/26521/5764
\begin{tikzpicture}
\begin{axis} [xmin=5.5, xmax=15.5,ymin=12,ymax=16, xlabel=Varv, ylabel={Tid (s)},
legend pos=outer north east]
\addplot+ [blue, mark options={blue}, mark=square*] table [col sep=comma, x index=0, y index = 1] {stats/lap.csv};
\addlegendentry{Körning 1}
\addplot[blue, domain=0:20] {13};
\addlegendentry{Referenstid körning 1}
\addplot+ [red, mark options={red}, mark=*] table [col sep=comma, x index=0, y index = 2] {stats/lap.csv};
\addlegendentry{Körning 2}
\addplot [red, domain=0:20] {14};
\addlegendentry{Referenstid körning 2}
\draw[dotted] (axis cs:0,12.5) -- (axis cs:16,12.5);
\draw[dotted] (axis cs:0,13.5) -- (axis cs:16,13.5);
\draw[dotted] (axis cs:0,14.5) -- (axis cs:16,14.5);
\end{axis}
\end{tikzpicture}
\caption{Varvtider för de två körningarna från redovisningen, exklusive
kalibreringsvarven.}
\label{fig:laptimes-no-calibration}
\end{figure}
|