ich bin noch recht neu was pgfplots angeht und habe ein Problem mit der Achsenskalierung. Ich möchte, dass die x-Achse einen beriech von 0 - 0.14 darstellt und dabei eine teilung von 0.01 hat, aber ich habe da so ungünstige Exponenten und hätte es gerne einfach als 0, 0.01, 0.02 ... 0.13, 0.14 .
\begin{tikzpicture} \begin{axis}[xmin=0, xmax=0.14, ymin=0, ymax=0.7, xlabel=$R_{Einlauf}/R_{Rotor}$, ylabel=$T_{Duct}/T$, height=9cm, width=14cm] \addplot table {GraphData/EinlaufWu.dat}; \addplot table {GraphData/EinlaufTungComp.dat}; \legend{600mm [Wu],125mm [Tung Comp]} \end{axis} \end{tikzpicture}
scaled ticks=false, xtick={0.01,0.02,...,0.14}]

Vielen Dank
Dennis