summaryrefslogtreecommitdiffstats
path: root/labb/experimentell-problemlösning/var_l.tex
blob: 7bf3b484aacfc34bb737838464b23082a9f154cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
\documentclass[tikz,border=0.1in]{standalone}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}

\usepackage{amssymb, amsmath, amsthm}

\usepackage{pgfplots}
\usepackage{pgfplotstable}

\begin{document}

\begin{tikzpicture}
\begin{axis} [
  ylabel=Text Y,
  xlabel=Text X,
  xmin=0, ymin=0,
  legend pos = outer north east,
]
  \addplot+ [only marks] table [col sep=comma, x index=0, y index=1] {data/var_l.csv};
\end{axis}
\end{tikzpicture}

\end{document}