I want to put one figure with multiple curves in my beamer presentation, but I want to put a pause between the curves. It means that the curves appear in the plot one by one. The \pause option does not work. How can I do this?
\documentclass[10pt]{beamer}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot table {error1 };
\pause
\addplot table {error3};
\pause
\addplot table {error5};
\pause
\end{axis}
\begin{document}
