ich möchte mit tikzpicture eine Messreihe darstellen, welche ist als .txt-Datei vorliegen habe. Dabei treten jedoch unschöne Ausschläge auf, die bspw. in Matlab nicht auftreten. Hier mein Minimalbeispiel:
% !TEX lualatex
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.18}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
\begin{axis}[
width=12cm, height=4cm,
xmin=0,ymin=0, xmax = 10, ymax = 0.2,
y tick label style={/pgf/number format/.cd,fixed,precision=2,zerofill},
legend pos=south east,
xlabel={Zeit in s},ylabel={Auslenkung in mm},
]
\addplot [mark = none]table[x=s1,y=f1] {Messdaten.txt};
\addlegendentry{Axiale Auslenkung}
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
Hat jemand eine Idee was hier schief geht?
Danke und Viele Grüße.


