I have already read Create a 3D figure (surf) from .csv file, 2D surface on a 3D surface plot external data in a file but nothing seems to work.
I have the following code:
\documentclass{standalone}
\usepackage{tikz}
\usepackage{filecontents}
\usepackage{pgfplots}
\pgfplotsset{compat=1.12}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot3 [surf, mesh/rows=1000, shader=interp] table[col sep=comma] {Results_CSV/F6/F6_TTF_adaptaAndskillAndWeightModif.csv};
\end{axis}
\end{tikzpicture}
\end{document}
With the following data: data. When I compile, I get the following error:
! Package pgfplots Error: CRITICAL: shader=interp: got unsupported pdf shading
type '0'. This may corrupt your pdf!.
Which I don't understand. I have indicated the number of rows, so it should be OK right? Thanks a lot for the help.
edit: there are 4 columns per row in the data file as I would like to plot row 1, 2 and 3 as a 3d surface and use row 4 as a color, to represent the 4th dimension.
