我有两个单独的表,它们的行数和标签数相同,如下所示:
一:
a 12
b 32
c 18
二:
a 45
b 98
c 300
我怎样才能将这两个表合并为一个?如下所示:
a 12 45
b 32 98
c 18 300
感谢 Elisheva
答案1
\pgfplotstablecreatecol
来自的命令pgfplotstable
这里可以使用包在创建表时向表中添加附加列:
\documentclass{article}
\usepackage{pgfplotstable}
\usepackage{booktabs}
%\pgfplotsset{compat=1.10}
%the following section is just for the example; you can have your actual tables
% in separate external files
\usepackage{filecontents}
\begin{filecontents*}{table1.dat}
name data1
a 12
b 32
c 18
\end{filecontents*}
\begin{filecontents*}{table2.dat}
name data2
a 45
b 98
c 300
\end{filecontents*}
%%%% end of section %%%%%%%%%%%%%%%
\pgfplotstableread{table1.dat}{\loadedtablei}
\pgfplotstableread{table2.dat}{\loadedtableii}
\pgfplotstablecreatecol[
copy column from table={\loadedtableii}{[index] 1},
]{data2}{\loadedtablei}
\begin{document}
\pgfplotstabletypeset[
string type,
every head row/.style={before row=\toprule,after row=\midrule},
every last row/.style={after row=\bottomrule}
]{\loadedtablei}
\end{document}
正如我在代码中提到的,该filecontents*
部分仅用于示例;例如,您可以将表放在外部单独的文件中,也可以将它们放在实际.tex
文件中。
这是一个更真实的例子,逐步解释该过程。
创建一个
table1.dat
如下文件:Category Valuea {Share Jewish} 0.87 {Share Muslim} 0.05 {Share other religion} 0.08 {Mean age} 33.28 {Share born in Israel} 0.69 {Share work} 0.23 {Share male} 0.51 {Share dis\_21} 0.01 {Share dis\_18} 0.00 {Share dis\_13} 0.00
创建一个
table2.dat
如下文件:Category Valueb {Share Jewish} 0.13 {Share Muslim} 0.51 {Share other religion} 0.18 {Mean age} 23.16 {Share born in Israel} 0.29 {Share work} 0.15 {Share male} 0.33 {Share dis\_21} 0.02 {Share dis\_18} 0.01 {Share dis\_13} 0.01
请注意,包含多个单词的条目使用括号分组。我还为合并表的第一行提供了一些标题。
将这些文件保存在您当前的工作目录中(与您的文件相同的目录
.tex
)。您的
.tex
文件应该具有以下方面:\documentclass{article} \usepackage{pgfplotstable} \usepackage{booktabs} %\pgfplotsset{compat=1.10} % Read table1 \pgfplotstableread{table1.dat}{\loadedtablei} % Read table2 \pgfplotstableread{table2.dat}{\loadedtableii} % Create additional column for table1 containing % second column from table2 \pgfplotstablecreatecol[ copy column from table={\loadedtableii}{[index] 1}, ]{Valueb}{\loadedtablei} \begin{document} % Print the merged table \pgfplotstabletypeset[ string type, every head row/.style={before row=\toprule,after row=\midrule}, every last row/.style={after row=\bottomrule} ]{\loadedtablei} \end{document}
处理上述文件可得出: