Um ein 3D-Streudiagramm zu erstellen, habe ich den Code von Seite 132 des Handbuchs kopiert und eingefügthttp://ftp.math.purdue.edu/mirrors/ctan.org/graphics/pgf/contrib/pgfplots/doc/pgfplots.pdf,
\documentclass{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{width=7cm,compat=1.17}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xlabel=$x$,
ylabel=$y$,
zlabel={$z$},
title=A Scatter Plot Example,
]
\addplot3+ [only marks]
table {plotdata/TestTable.dat};
\end{axis}
\end{tikzpicture}
\end{document}
und meine TestTable.dat Datei ist
x y z
1 1 1
2 1 1
3 1 1
4 2 1
Ich erhalte die Fehlermeldung: „Fehler beim Paket pgfplots: Die Tabellendatei ‚plotdata/TestTable.dat‘ konnte nicht gelesen werden (weitere Informationen finden Sie im Handbuch zu pgfplotstable). table {plotdata/TestTable.dat};“
Meine TestTable.dat ist als .dat-Datei gespeichert und befindet sich im selben Ordner wie die Tex-Datei. Kann mir jemand den Fehler erklären, obwohl ich der Anleitung gefolgt bin?