Why does this Warning appear when using filecontents? : File `data.csv' already exists on the system. Does anyone know how i can remove this warning?
\begin{filecontents*}{data.csv}
a,b,c,d
1,4,5,1
2,3,1,5
3,5,6,1
4,1,4,9
5,3,4,7
\end{filecontents*}
\begin{tikzpicture}
\begin{axis}
\addplot table [x=a, y=c, col sep=comma] {data.csv};
\end{axis}
\end{tikzpicture}
\begin{filecontents*}[overwrite]{data.csv}if you are sure that you want that. – Ulrike Fischer Jul 28 '22 at 12:12