直接从.csv 文件绘图

直接从.csv 文件绘图
\begin{tikzpicture}
  \begin{axis}[
   title=Stress vs. Strain,
   xlabel={Strain $\Delta$ (\si{\milli\meter})},
   ylabel={Load $F$ (\si{\newton})},
   xmin=-0.30,
   ymin=0,
   %grid=major,
               ]
  \addplot+[smooth,mark=none]table[x=Strain1, y=Load, col sep=comma 
   {SpecimenA1};

\end{axis}
\end{tikzpicture}

在 csv 文件中,我有两列:“应力”和“应变”。每当我尝试快速构建时,都会收到错误“Package pgfplots 错误:无法在‘search pat’中读取表格文件‘SpecimenA1’”。出了什么问题?

相关内容