I'm importing a CSV file and I want to take off the marks of the graphic,how can I do this?
\documentclass{minimal}
\usepackage{pgfplots}
\usepgfplotslibrary{dateplot}
%\usepackage{filecontents}% Commented out dataCL.csv is not overwriten.
\begin{filecontents*}{dataCL.csv}
x, y
1, 10
2, 15
3, 17
\end{filecontents*}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot table [mark = none, draw = none,col sep=comma,x=x, y=y] {dataCL.csv};
\end{axis}
asdfasdfasdfasd
\end{tikzpicture}
\end{document}
minimalclass, so I'd recommend switching toarticle: Why should the minimal class be avoided?. Thanks for providing a MWE, but it would be helpful if you also provided some data points as well. – Peter Grill Apr 12 '13 at 02:40