导入数据集的选定行(不带标题行)
导入应使用列号而不是行标题。pgfplots 手册介绍了使用\thisrowno{}
以 $\mathbbm{N}_0$ 为数字的命令的可能性。
类似 MWE 运行良好
以下示例可以工作(没有错误消息)但不是预期的效果:
\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepackage{filecontents}
\begin{filecontents*}{data.dat}
aasd dasdf basdf casdf
1 4 5 1
2 3 1 5
3 5 6 1
4 1 4 9
\end{filecontents*}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
xlabel={xlabel},
ylabel={ylabel}]
\addplot[color=blue,mark=none]
table [x=aasd, y=casdf, col sep=space] {data.dat};
\addplot[color=red, mark=none]
table [x=aasd, y=basdf, col sep=space] {data.dat};
\end{axis}
\end{tikzpicture}
\end{document}
答案1
与问题中的 MWE 的区别在于,\thisrow{}
或者\thisrowno{}
需要在表的选项中使用不同的参数,即
\addplot[mark=none]
table [x=aasd, y=casdf, col sep=space] {data.dat};
以下命令显示相同的结果
\addplot[mark=none]
table [x expr=\thisrow{aasd}, y expr=\thisrow{casdf}, col sep=space] {data.dat};
或带有行号(无标题行):
\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepackage{filecontents}
\begin{filecontents*}{data.dat}
1 4 5 1
2 3 1 5
3 5 6 1
4 1 4 9
\end{filecontents*}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
xlabel={xlabel},
ylabel={ylabel}]
\addplot[color=blue,mark=none]
table [x expr=\thisrowno{0}, y expr=\thisrowno{3}, col sep=space] {data.dat};
\addplot[color=blue,mark=none]
table [x expr=\thisrowno{0}, y expr=\thisrowno{2}, col sep=space] {data.dat};
\end{axis}
\end{tikzpicture}
\end{document}