答案1
\documentclass[margin=-2pt]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot table [x=step, y=value, col sep=comma] {data.csv};
\end{axis}
\end{tikzpicture}
\end{document}
确保data.csv
您的项目中已有它。
\documentclass[margin=-2pt]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot table [x=step, y=value, col sep=comma] {data.csv};
\end{axis}
\end{tikzpicture}
\end{document}
确保data.csv
您的项目中已有它。