在 TEX 中从 csv 文件绘制图表(tikzpicture)

在 TEX 中从 csv 文件绘制图表(tikzpicture)

我在使用 csv 文件创建类似于 png 文件的图表时遇到了麻烦。

有两个 csv 文件包含两个不同模型(Kobert、XLM-R)的结果。

我想使用上述两个 csv 文件使 latex 中的绘图看起来与 png 文件相同。希望能得到您的帮助。

PNG 示例

KoBERT 的 CSV 文件

CSV 文件 XLM-R

答案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您的项目中已有它。

相关内容