summaryrefslogtreecommitdiffstats
path: root/Dokument/projektkonferens/figures.tex
diff options
context:
space:
mode:
authorGustav Sörnäs <gusso230@student.liu.se>2019-12-09 20:40:24 +0100
committerGustav Sörnäs <gusso230@student.liu.se>2019-12-09 20:40:24 +0100
commit0830278b04854a51d6b122d4bd55891585b3145d (patch)
treee4e38bdcee8ac776329d3a0096cb21f65269bced /Dokument/projektkonferens/figures.tex
parent7901c8fd149374059948238607fd66faa116d2cd (diff)
downloadtfyy51-0830278b04854a51d6b122d4bd55891585b3145d.tar.gz
Lägg till tidsrapporteringsgrafer
Diffstat (limited to 'Dokument/projektkonferens/figures.tex')
-rw-r--r--Dokument/projektkonferens/figures.tex29
1 files changed, 29 insertions, 0 deletions
diff --git a/Dokument/projektkonferens/figures.tex b/Dokument/projektkonferens/figures.tex
new file mode 100644
index 0000000..e25f70b
--- /dev/null
+++ b/Dokument/projektkonferens/figures.tex
@@ -0,0 +1,29 @@
+\documentclass{standalone}
+
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+\usepackage{pgfplots, pgfplotstable}
+\pgfplotsset{scaled y ticks=false}
+
+\renewcommand{\familydefault}{\sfdefault}
+\usepackage[cm]{sfmath}
+
+\begin{document}
+
+\begin{figure}
+ \begin{tikzpicture}
+ \begin{axis} [width=32em, height=24em, ymin=1, ymax=10800, xmin=0, xmax=12.2,
+ xtick={1,2,...,12}, xticklabels={38,39,...,49}, every axis plot/.append
+ style={thick}, ytick={0,1200,...,9600}, yticklabels={,,}, axis y line*=right]
+ % yticklabels={,20,40...,160}
+ \addplot+ [mark=none] table [col sep=comma, x index=0, y index = 1] {time.csv};
+ \addplot+ [mark=none] table [col sep=comma, x index=0, y index = 2] {time.csv};
+ \addplot+ [mark=none] table [col sep=comma, x index=0, y index = 3] {time.csv};
+ \addplot+ [mark=none] table [col sep=comma, x index=0, y index = 4] {time.csv};
+ \addplot+ [mark=none] table [col sep=comma, x index=0, y index = 5] {time.csv};
+ % \addplot+ [red, domain=0:16, mark=none] {7200};
+ \end{axis}
+ \end{tikzpicture}
+\end{figure}
+
+\end{document}