Wie stelle ich passende (kleinere) Schriftgröße bei pgfplots ein?
Ich bekomme die Schrift an der y-Achse nicht kleiner; bzgl. dr Vorgabe `width=3.5cm, height=2.5cm,` - diese Maße soll das Bild insgesamt haben :(
SOLL: Ich möchte in etwa diesen Style erreichen (`Wolfram mathematica`).
![alt text][1]
IST:
![alt text][2]
\documentclass[border=2pt, varwidth]{standalone}
\usepackage{pgfplots}
\usepackage{filecontents}
\begin{filecontents}{data.csv}
5 0 0.59049 0.32768 0.23730 0.16807 0.07776 0.03125
5 1 0.91854 0.73728 0.63281 0.52822 0.33696 0.18750
5 2 0.99144 0.94208 0.89648 0.83692 0.68256 0.50000
5 3 0.99954 0.99328 0.98438 0.96922 0.91296 0.81250
5 4 0.99999 0.99968 0.99902 0.99757 0.98976 0.96875
\end{filecontents}
\makeatletter
\newcommand{\srcsize}{\@setfontsize{\srcsize}{2pt}{5pt}}
\makeatother
\usepackage{lipsum}
\begin{document}
\tiny
\lipsum[1]
\bigskip
\srcsize
\lipsum[1]
\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
xticklabel style = {yshift=1.5pt, font=\srcsize},
% y
ymin=0,
ymax=1,
ytick = {0.2, 0.4, ..., 1},
ytickmax=1,% <- kein Tick oberhalb von y=.9
ylabel style={anchor=north west, yshift=1ex, font=\tiny,},
enlarge y limits={abs=10pt,upper},
yticklabel style = {xshift=2pt, font=\srcsize},
}}%
\begin{tikzpicture}[scale=1.0]
\begin{axis}[mystyle,
width=3.5cm, height=2.5cm,
xlabel={k},
ylabel={$P(X \leq k)$},
]
\addplot[draw=gray, thin, mark=*, mark size=1.0075pt, mark options = {draw=black, fill=white, thin}] table [x index=1, 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/55555555_26.png
[2]: http://texwelt.de/wissen/upfiles/55555555_25.png