我是新手pgfplotstable
,我正在尝试阅读格努普特中导出的表pgfplotstable
。
gnuplot脚本:
set samples 91
set table "file.dat"
set angles degrees
plot [0:90] sin(x),cos(x),tan(x);
unset table
gnuplot 表file.dat
如下所示(为简洁起见给出 5 分):
# Curve 0 of 3, 91 points
# Curve title: "sin(x)"
# x y type
0 0 i
1 0.0174524 i
2 0.0348995 i
3 0.052336 i
4 0.0697565 i
5 0.0871557 i
# Curve 1 of 3, 91 points
# Curve title: "cos(x)"
# x y type
0 1 i
1 0.999848 i
2 0.999391 i
3 0.99863 i
4 0.997564 i
5 0.996195 i
# Curve 2 of 3, 91 points
# Curve title: "tan(x)"
# x y type
0 0 i
1 0.0174551 i
2 0.0349208 i
3 0.0524078 i
4 0.0699268 i
5 0.0874887 i
注意:与上面的情况(所有数据按顺序排列)相比,下面给出的表格标题和格式(所有数据按列排列)是可以理解的
# A B C
1 2 3
4 5 7
8 9 10
问题
是否可以pgfplotstable
通过\pgfplotstableset{}
gnuplot 中的任何其他解决方法读取自定义格式的 ASCII 文件,以使其能够很好地读取和排版pgfplotstable
?
答案1
起初我以为你想绘制数据但再次阅读你的问题似乎你只是想将它设置为一个表格pgfplotstable
你可以做这样的事情虽然我不确定pgfplotstable
在这种情况下是否真的有帮助,当你重新排列要读取的数据时\pgfplotstabletypeset
你可以简单地将它写成一个longtable
,但是......
[更新非整数第一列]
\documentclass{article}
\usepackage{pgfplotstable,longtable,array}
\begin{document}
\makeatletter
\def\loopb#1\repeatb{\def\iterateb{#1\relax\expandafter\iterateb\fi}%
\iterateb \let\iterateb\relax}
\let\repeatb\fi
\begingroup
\count@\z@
\catcode`\#12
\catcode`\*=6
\def\tstrelax{\relax}
\def\tsti{i}
\def\ca*1# Curve*2 of *3,*4 points*5!!{%
\def\cnum{*2}\def\ctot{*3}\def\cpoints{*4}}
\def\cb*1# Curve title: "*2"*3!!{%
\def\title{*2}}
\def\cc*1 *2 *3 *4!!{%
\def\x{*1}\def\y{*2}\def\ci{*3}}
\newread\myin
\openin\myin=file.dat
\@tempcnta\z@
\loop
\ifeof\myin\else
\read\myin to \tmp
\expandafter\ifx\expandafter\par\tmp
\else
\expandafter\cb\tmp# Curve title: "\relax"!!%
\ifx\title\tstrelax
\expandafter\ca\tmp# Curve of \relax, points!!%
\ifx\ctot\tstrelax
\expandafter\cc\tmp. . . !!%
\ifx\ci\tsti
\expandafter\edef\csname my-\the\@tempcnta-\the\@tempcntb\endcsname{\ifnum\@tempcnta=1 \x\space\fi\y}
\advance\@tempcntb\@ne
\fi
\else
\let\total\ctot
\let\points\cpoints
\advance\@tempcnta\@ne
\@tempcntb\z@
\fi
\else
\expandafter\let\csname my-\the\@tempcnta-title\endcsname\title
\fi
\fi
\repeat
{\let\\\relax
\gdef\mytable{}
\gdef\row{x}
\@tempcnta\z@
\loop
\advance\@tempcnta\@ne
\xdef\row{\row\space \csname my-\the\@tempcnta-title\endcsname}
\ifnum\@tempcnta<\total
\repeat
\xdef\mytable{\row\space\\\space}
\@tempcntb\z@
\loopb
\xdef\row{}
\@tempcnta\z@
\loop
\advance\@tempcnta\@ne
\xdef\row{\row\space \csname my-\the\@tempcnta-\the\@tempcntb\endcsname}
\ifnum\@tempcnta<\total
\repeat
\xdef\mytable{\mytable\row\space\\\space}
\advance\@tempcntb\@ne
\ifnum\@tempcntb<\points
\repeatb
\show\mytable
\xdef\tmp{\noexpand\pgfplotstabletypeset[row sep=\noexpand\\, begin table=\noexpand\begin{longtable},
end table=\noexpand\end{longtable}
sci,precision=5]{\mytable}}
}
\endgroup
\tmp
\end{document}
答案2
虽然不像上面那样是一个很好的低级 TeX 答案,但令人惊讶的是以前被忽略了,今天发现使用 pgfplotstable 选项ignore chars={\i}
阅读两列中的完整gnuplot
表格,file.dat
select equal part entry of
将两列重新排列成 3 列的相等行。但找不到 pgfplotstable 选项来自动读取多个标题(“sin(x)”、“cos(x)”和“tan(x)”)。
\documentclass[12pt]{article}
\usepackage{pgfplotstable}
\pgfplotsset{compat=newest}
\usepackage{booktabs}
\usepackage{colortbl}
\usepackage{longtable}
\pgfplotstableset{begin table=\begin{longtable},end table=\end{longtable},%
every head row/.style={before row=\toprule,after row=\midrule},%
every last row/.style={after row=\bottomrule},%
every even row/.style={before row={\rowcolor[gray]{.8}}}%
}
\begin{document}
\pgfplotstabletypeset[columns={0,1,1,1},%
display columns/0/.style={select equal part entry of={0}{3},column name=$x$},%
display columns/1/.style={select equal part entry of={0}{3},column name=$sin(x)$},%
display columns/2/.style={select equal part entry of={1}{3},column name=$cos(x)$},%
display columns/3/.style={select equal part entry of={2}{3},column name=$tan(x)$},%
precision=5,ignore chars={\i}]{file.dat}
\end{document}