pgfplots-Graph: Null auf x-Achse anzeigen, bei xticks=datexticks=data
Was muss ich machen, damit noch die 0 auf der x-Achse angezeigt wird?
![alt text][1]
\documentclass[border=2pt, varwidth]{standalone}
\usepackage{pgfplots}
%\pgfplotsset{compat=1.13}% derzeit aktuelle Version
\pgfplotsset{compat=newest}% Overleaf hat nur Version 1.11
\usepackage{filecontents}
\begin{filecontents}{data.csv}
0 0.5905 0.3277 0.2373 0.1681 0.0778 0.0313
1 0.9185 0.7373 0.6328 0.5282 0.3370 0.1875
2 0.9914 0.9421 0.8965 0.8369 0.6826 0.5000
3 0.9995 0.9933 0.9844 0.9692 0.9130 0.8125
4 1.0000 0.9997 0.9990 0.9976 0.9898 0.9688
5
\end{filecontents}
\begin{document}
\pgfplotsset{mystyle/.style={%
% allgemein
% ybar interval,%=10pt, ? % Balkendiagramm
/pgf/number format/use comma, % Kommas als Zahlentrennzeichen
% x und y
axis lines = middle,% < Achsenstil so früh wie möglich einstellen - er ändert weitere Optionen
axis line style={-latex},
ticklabel style = {font=\tiny},
major tick length =2pt,
% x
xmin=0,
xmax=5,
xtick=data,
% hide obscured x ticks=false,% <- zum Anzeigen des Ticklabels 0 % TUT NET
xlabel style={anchor=north, font=\tiny,},
enlarge x limits={abs=10pt,upper},% <- damit die Pfeilspitze an der y-Achse sichtbar ist
% y
ymin=0,
ymax=1,
ytickmax=1,% <- kein Tick oberhalb von y=.9
ylabel style={anchor=north west, yshift=1ex, font=\tiny,},
enlarge y limits={abs=10pt,upper},
}}%
\begin{tikzpicture}[scale=2.0]
\begin{axis}[mystyle,
width=3.5cm, height=2.5cm,
xlabel={k},
ylabel={$P(X \leq k)$},
]
\addplot[draw=gray, ultra thin, mark=*, mark size=1.0075pt, mark options = {draw=black, fill=white, thin}] table [y index=6] {data.csv};
\addplot[draw=black, ultra thin, densely dashed, domain=0:5.5] {1};
\end{axis}
\end{tikzpicture}
\end{document}
[1]: http://texwelt.de/wissen/upfiles/Graph.png