我正在尝试通过从每一行中减去第一行来从另一列创建新列。然后我想创建具有相对差值的另一列。
\documentclass{article}
\usepackage{pgfplotstable}
\begin{document}
\pgfplotstableread{
TotalDistance
35089
35182
35410
35523
35694
35789
35895
35984
36006
36068
}{\mytable}
\pgfplotstabletypeset[
columns={TotalDistance,LocalDistance},
create on use/LocalDistance/.style={
create col/expr={\thisrow{TotalDistance} - 35089},
},
create on use/DifferenceDistance/.style={
create col/expr={\thisrow{LocalDistance} - \prevrow{LocalDistance}},
},
]{\mytable}
\end{document}
我的目标是实现:
TD | LD | DD
------+-----+----
35089 | 0 | 0
35182 | 93 | 93
35410 | 321 | 228
35523 | 434 | 113
35694 | 605 | 171
35789 | 700 | 95
35895 | 806 | 106
35984 | 895 | 89
36006 | 917 | 22
36068 | 979 | 62
目前存在的问题是:
- 如何避免硬编码
35089
,而是从第一个单元格读取? - 我收到错误未知函数“LocalDistance__column_not_found”当我尝试排版 DifferenceDistance 列时,即使 LocalDistance 列可以毫无问题地创建。
答案1
您可以使用 读取第一个单元格值
\pgfplotstablegetelem{<row>}{<col>}\of\mytable
。返回值将写入\pgfplotsretval
。根据提议敲击
\pgfplotstablecreatecol
,下面是使用而不是\pgfplotstabletypeset
向表中添加列的示例:
\documentclass{article}
\usepackage{pgfplotstable}
\begin{document}
\pgfplotstableread{
TotalDistance
35089
35182
35410
35523
35694
35789
35895
35984
36006
36068
}{\mytable}
% read the first cell value -> \pgfplotsretval
\pgfplotstablegetelem{0}{TotalDistance}\of\mytable
% add column LocalDistance
\pgfplotstablecreatecol
[expr={\thisrow{TotalDistance} - \pgfplotsretval}]
{LocalDistance}{\mytable}
% add column DifferenceDistance
\pgfplotstablecreatecol
[expr={\thisrow{LocalDistance} - \prevrow{LocalDistance}}]
{DifferenceDistance}{\mytable}
% typeset the table
\pgfplotstabletypeset
[columns={TotalDistance,LocalDistance,DifferenceDistance}]
{\mytable}
\end{document}