pgfplotstable 手动声明行数据

pgfplotstable 手动声明行数据

我正在尝试使用 pgfplotstable 将数据加载到一些表中。我的问题是文件中的数据格式与我想要在表中呈现的方式略有不同,并且在转换后,“缺少”了一些行数据。在搜索了互联网之后,我还是无法想出一个可行的方法,所以我来了!

我不太擅长描述它,所以我只给你举个例子。我想要这个:

期望输出显示 r_lesion 列的正确行值

但到目前为止我只能这样做:

当前输出显示 r_lesion 列的 NaN 行值

我用来创建这个简短演示的代码如下(所有“pgfplotstableread”将被使用“pgfplotstabletranspose”从文件加载相同数据所取代):

\documentclass{article}

\usepackage{booktabs}
\usepackage{pgfplotstable}

\begin{document}

\pgfkeys{/pgf/number format/.cd,fixed,precision=2}

\pgfplotstableset{%
    every head row/.style={
        before row={%
            \toprule
            \ensuremath{r_{lesion}} & \multicolumn{4}{c}{\ensuremath{E_{nom}}} \\
        },
        after row=\midrule
    },
    every last row/.style={after row=\bottomrule}
}

\pgfplotstabletypeset[
    numeric type,
    columns/(mm)/.style={
        column type=r
    }
]{
    (mm)  0.32 0.56 1.80 3.20
    5  0.98 1.03 1.26 1.47
    10 0.84 0.95 1.44 1.74
    15 0.05 0.65 1.86 2.57
    20 0.03 0.52 2.13 3.19
}

\vspace{0.5in}

\pgfplotstableread{
    sr   esr
    0.32 0.98
    0.56 1.03
    1.8  1.26
    3.2  1.47
}\rowA

\pgfplotstableread{
    sr   esr
    0.32 0.84
    0.56 0.95
    1.8  1.44
    3.2  1.74
}\rowB

\pgfplotstableread{
    sr   esr
    0.32 0.05
    0.56 0.65
    1.8  1.86
    3.2  2.57
}\rowC

\pgfplotstableread{
    sr   esr
    0.32 0.03
    0.56 0.52
    1.8  2.13
    3.2  3.19
}\rowD

\pgfplotstabletranspose[columns=esr, numeric type]{\transA}{\rowA}
\pgfplotstabletranspose[columns=esr, numeric type]{\transB}{\rowB}
\pgfplotstabletranspose[columns=esr, numeric type]{\transC}{\rowC}
\pgfplotstabletranspose[columns=esr, numeric type]{\transD}{\rowD}
\pgfplotstablevertcat{\renderedTable}{\transA}
\pgfplotstablevertcat{\renderedTable}{\transB}
\pgfplotstablevertcat{\renderedTable}{\transC}
\pgfplotstablevertcat{\renderedTable}{\transD}
\pgfplotstabletypeset[
    columns/colnames/.style={
        numeric type,
        column name={(mm)},
        column type=r
    },
    columns/0/.style={
        column name={0.32}
    },
    columns/1/.style={
        column name={0.56}
    },
    columns/2/.style={
        column name={1.80}
    },
    columns/3/.style={
        column name={3.20}
    }
]\renderedTable

\end{document}

如果我将“colnames”改回字符串类型,它会显示“esr”而不是“NaN”,但我仍然希望能够在文档中手动输入这些值,以便我可以执行以下操作:

\defineColumnOneRows{5,10,20,25}

并将这些值放入第一列的行中。

非常感谢您的帮助!谢谢您的关注!

相关内容