Wie kann ich die pgfplots Skalierung der x-Achse anpassen?anpassen
[![alt text][1]][1]Ich Ich bin dabei für meine Masterthese ein Diagramm mit 4 Graphen zu erstellen.
Die Skalierung der X-Achse erfolgt dabei in 0,02 0,05 0,1 0,2 0,5 und 1,0 Schritten.
Der Abstand bzw. die Skalierung zwischen den Werten soll aber gleich sein.
\documentclass[chapterprefix=true, 12pt, a4paper, oneside, parskip=half, listof=totoc, bibliography=totoc, numbers=noendperiod]{scrbook}
\usepackage{pgfplots}
\begin{document}
\begin{figure}[H]
\begin{tikzpicture}
\begin{axis}[width=0.95\textwidth,height=0.48\textheight,ylabel shift = -1cm,
/pgf/number format/.cd,
use comma,
1000 sep={},
title={Grathöhe $h_{0}$},
xlabel={Zustellung $a_{e}$ in mm,}
ylabel={Grathöhe in $\mu$m, }
xmin=0, xmax=1.0,
ymin=0, ymax=1000,
xtick={0,0.02,0.05,0.1,0.2,0.5,1.0},
ytick={0,250,500,750,1000},
legend style={at={(0.5,-0.1)},anchor=north},
ymajorgrids=false,
xmajorgrids=false,
grid style=dashed
]
\addplot [color=red, thick, mark=o] table[x=L, y=H60,] {RaRz.csv};
\addplot [color=blue, thick, mark=square] table[x=L, y=K60,] {RaRz.csv};
\addplot [color=black, thick, mark=o] table[x=L, y=H90,] {RaRz.csv};
\addplot [color=orange, thick, mark=square] table[x=L, y=K90,] {RaRz.csv};
\legend{H`enter code here`; $\gamma$ = 60 $^\circ$,K; $\gamma$ = 60 $^\circ$,H; $\gamma$ = 90 $^\circ$,K; $\gamma$ = 90 $^\circ$};
\end{axis}
\end{tikzpicture}
\caption{Unterschrift}
\label{img:dia1}
\end{figure}
\end{document}
Koordinaten:
L H60 K60 H90 K90
0 251 388.547 119.126 68.89
0.01 238.7 672.49 389.371 416.768
0.02 321.729 408.473
0.1 518.886 829.402 359.083 441.275
0.2 432.966 359.907 268.583 309.692
1.0 479.48 776.298 283.119 351.612
p.s. keine Ahnung wie ein Minimalbeispiel erzeugt wird...
[1]: https://texwelt.de/wissen/upfiles/Grathoehe.png