ich arbeite mit pgfplots und möchte eine einfache Funktion plotten, aber ohne Knoten an den Punkten!
\begin{tikzpicture}
\begin{axis}
\addplot file{foo.dat};
\end{axis}
\end{tikzpicture}
\addplot[foo foo] file{foo.dat}; \begin{tikzpicture}
\begin{axis}
\addplot file{foo.dat};
\end{axis}
\end{tikzpicture}
\addplot[foo foo] file{foo.dat}; 

\documentclass{minimal}
\usepackage{tikz}
\usepackage{pgfplots}
\listfiles
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot[no markers] coordinates {(0,1)(1,1)(2,7)};
\end{axis}
\end{tikzpicture}
\end{document}