I would like to have my vertical axis 1.0 above the maximum value and 1.0 beneath the minimum value (implicit). Though that enlarge y limits would do the job, however it does not. I'm not sure how this function actually works and if it is the correct approach to solve my problem.
With my MWE, the vertical range is between 2 and 7, so I would like to have my vertical axis set between 1 and 8. Implicit of the plotted values; so ymin=1 and ymax=8 is not an answer.
Here's my MWE
\documentclass{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.9}
\usepackage{csvsimple}
\usepackage{filecontents}
\begin{filecontents*}{data.csv}
x,value
0, 3
5, 6
14, 7
31, 2
\end{filecontents*}
\begin{document}
\begin{tikzpicture}
\centering
\begin{axis}[
enlarge y limits = 1
]
\addplot table [x=x, y=value, col sep=comma] {data.csv};
\end{axis}
\end{tikzpicture}
\end{document}

enlarge y limit={abs=1}. – Jake Feb 17 '16 at 09:57absis specified, does it enlarge by pt's? – Joost Döbken Feb 17 '16 at 10:03enlarge y limitskey works – Jake Feb 17 '16 at 10:48