hier mein Minimalbeispiel:
\documentclass[paper=a4,12pt,version=last]{scrartcl}
\usepackage{pgfplots}
\pgfplotsset{compat = newest}
\begin{document}
\begin{tikzpicture}
\begin{loglogaxis}
\pgfplotstableread[col sep=comma]{test.csv}
\datatable
\addplot table[y = P5] from \datatable ;
\end{loglogaxis}
\end{tikzpicture}
\end{document}
Die Fehlermeldung lautet, wenn ich die Inhalte nicht lösche:
! Illegal parameter number in definition of \pgfplotstable@loc@TMPa.
Wie kann ich das ohne Löschungen realisieren?
Vielen Dank im Voraus und einen schönen sonnigen Tag noch!

