Zellinhalte in einer Spalte basierend auf einer anderen Spalte nachbearbeiten

Zellinhalte in einer Spalte basierend auf einer anderen Spalte nachbearbeiten

Ich versuche, etwas ganz Ähnliches wie diesen Beitrag zu machen:

pgfplotstable: Bedingte Nachbearbeitung von Zellinhalten auf Spaltenbasis

Ich möchte die Spalte jedoch basierend auf dem Inhalt einer anderen Spalte nachbearbeiten. Beispielsweise möchte ich *der coefficientSpalte ein hinzufügen, wenn das entsprechende t-valuegrößer als 2 ist.

Normalerweise melde ich in der Tabelle nur die coefficientund standard error, nicht die . Ich möchte die Spalten basierend auf den Werten aus t-valuenachbearbeiten .coefficientcoefficient/standard error

Nachfolgend finden Sie das 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}

Bildbeschreibung hier eingeben

Wie kann ich das *in die coefficientSpalte einfügen, sodass ich das nicht melden muss t-value?

Jede Hilfe wird geschätzt.

Antwort1

Sie können es auf eine raffinierte Art und Weise tun:

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
}},

Übrigens: Ich habe Ihre Methode zum Hinzufügen eines Sterns in der t-valueSpalte vereinfacht:
\pgfmathparse{##1 > \bordervalue ? "^*" : ""}\pgfmathresult

Bildbeschreibung hier eingeben

\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}

verwandte Informationen