Я пытаюсь сделать что-то похожее на этот пост:
pgfplotstable: Условная постобработка содержимого ячеек по столбцам
Однако я хотел бы выполнить постобработку столбца на основе содержимого другого столбца. Например, я хочу добавить *
к coefficient
столбцу a, если соответствующий t-value
больше 2.
В таблице я обычно сообщаю только coefficient
и standard error
, а не t-value
. Я хотел бы выполнить постобработку coefficient
столбцов на основе значений из coefficient/standard error
.
Ниже приведен MWE:
\documentclass{article}
\usepackage{pgfplotstable}
\begin{filecontents*}{test1.dat}
coefficient {standard error}
-.0159375 .008852
-.0107286 .0091658
.0042201 .0089453
.0108719 .0038041
\end{filecontents*}
\begin{document}
\pgfplotstableread{test1.dat}\results
\pgfplotstablecreatecol[expr={\thisrow{coefficient}/\thisrow{standard error}}]{t-value}{\results}
\def\bordervalue{2}
\pgfplotstabletypeset[
columns={coefficient, standard error, t-value},
columns/t-value/.style={
%preproc/expr = {100*##1},
postproc cell content/.style={
/pgfplots/table/@cell content/.add={}{%
\pgfmathparse{int(greater(##1,\bordervalue))}
\ifnum\pgfmathresult=1
$^*$
\fi
},
},
},
]\results
\end{document}
Как мне поместить *
в coefficient
столбец, чтобы мне не пришлось сообщать t-value
?
Любая помощь будет оценена по достоинству.
решение1
Это можно сделать хитрым способом:
columns/coefficient/.style={
postproc cell content/.append code={%
\pgfplotstablegetelem{\pgfplotstablerow}{t-value}\of{\results}%
\pgfmathsetmacro{\TvalueTest}{\pgfplotsretval > \bordervalue ? 1 : 0}%
\ifthenelse{\TvalueTest = 1}% if
{\pgfkeysalso{/pgfplots/table/@cell content/.add={$}{*{}^*$}} }% then
{}% else
}},
Кстати: я упростил ваш метод добавления звезды в t-value
столбец:
\pgfmathparse{##1 > \bordervalue ? "^*" : ""}\pgfmathresult
\documentclass[margin=5pt]{standalone}
%\documentclass{article}
\usepackage{pgfplotstable}
\usepackage{ifthen}
\usepackage{colortbl}
\usepackage{filecontents}
\begin{filecontents*}{test1.dat}
coefficient {standard error}
-.0159375 .008852
-.0107286 .0091658
.0042201 .0089453
.0108719 .0038041
\end{filecontents*}
\begin{document}
\pgfmathsetmacro\bordervalue{2}
\pgfplotstableread[]{test1.dat}\results
\pgfplotstablecreatecol[expr={\thisrow{coefficient}/\thisrow{standard error}}]{t-value}{\results}
\pgfplotstabletypeset[
columns={coefficient, standard error, t-value},
columns/t-value/.style={numeric type,
postproc cell content/.style={
/pgfplots/table/@cell content/.add={$}{
\pgfmathparse{##1 > \bordervalue ? "^*" : ""}\pgfmathresult$ % New
},},
},
% New:
columns/coefficient/.style={
postproc cell content/.append code={%
\pgfplotstablegetelem{\pgfplotstablerow}{t-value}\of{\results}%
\pgfmathsetmacro{\TvalueTest}{\pgfplotsretval > \bordervalue ? 1 : 0}%
\ifthenelse{\TvalueTest = 1}% if
{\pgfkeysalso{/pgfplots/table/@cell content/.add={\cellcolor{pink}$}{*{}^*$}}}% then
{}% else
}},
]\results
\end{document}