Estoy importando un archivo CSV y quiero quitar las marcas del gráfico, ¿cómo puedo hacer esto?
\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}
Respuesta1
mark=none
es una opción para \addplot
/ \addplot+
, no para table
. Por cierto, deberías usar only marks
en lugar de draw=none
. Adjunto encontrará un ejemplo en el que el primer gráfico tiene solo una línea y el segundo solo tiene marcas.
\documentclass{article}
\usepackage{pgfplots}
\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+ [mark=none] table [col sep=comma, x=x, y=y] {dataCL.csv};
\addplot+ [only marks] table [col sep=comma, x=x, y=y] {dataCL.csv};
\end{axis}
\end{tikzpicture}
\end{document}