server / evaluation /query_family /conditional /figures /conditional_prefix_bars_appendix.tex
TabQueryBench's picture
Add files using upload-large-folder tool
c22b87b verified
Raw
History Blame Contribute Delete
4.5 kB
\documentclass[tikz,border=4pt]{standalone}
\usepackage{pgfplots}
\usepgfplotslibrary{groupplots}
\usetikzlibrary{patterns}
\usepackage{xcolor}
\pgfplotsset{compat=1.18}
\definecolor{modelreal}{HTML}{000000}
\definecolor{modelarf}{HTML}{777777}
\definecolor{modelbayesnet}{HTML}{CCBB44}
\definecolor{modelctgan}{HTML}{EE6677}
\definecolor{modelforestdiffusion}{HTML}{228833}
\definecolor{modelrealtabformer}{HTML}{332288}
\definecolor{modeltabbyflow}{HTML}{882255}
\definecolor{modeltabddpm}{HTML}{EE7733}
\definecolor{modeltabdiff}{HTML}{AA3377}
\definecolor{modeltabpfgen}{HTML}{009988}
\definecolor{modeltabsyn}{HTML}{66CCEE}
\definecolor{modeltvae}{HTML}{4477AA}
\begin{document}
\begin{tikzpicture}
\begin{groupplot}[
group style={group size=3 by 1, horizontal sep=1.1cm},
width=4.2cm,
height=7.0cm,
ybar,
bar width=7pt,
ymin=0, ymax=1.02,
xtick=data,
x tick label style={rotate=45, anchor=east, font=\tiny},
tick label style={font=\scriptsize},
label style={font=\scriptsize},
grid=both,
grid style={draw=gray!20},
]
\nextgroupplot[title={Categorical}, ylabel={Derived subgroup score}, xtick={1,2,3,4,5,6,7,8,9,10,11,12}, xticklabels={REAL,ARF,BayesNet,CTGAN,ForestDiffusion,RealTabFormer,TabbyFlow,TabDDPM,TabDiff,TabPFGen,TabSyn,TVAE}]
\addplot+[draw=modelreal, fill=modelreal] coordinates { (1,1.0000) };
\addplot+[draw=modelarf, fill=modelarf] coordinates { (2,0.7944) };
\addplot+[draw=modelbayesnet, fill=modelbayesnet] coordinates { (3,0.7579) };
\addplot+[draw=modelctgan, fill=modelctgan] coordinates { (4,0.7494) };
\addplot+[draw=modelforestdiffusion, fill=modelforestdiffusion] coordinates { (5,0.6621) };
\addplot+[draw=modelrealtabformer, fill=modelrealtabformer] coordinates { (6,0.8572) };
\addplot+[draw=modeltabbyflow, fill=modeltabbyflow] coordinates { (7,0.6598) };
\addplot+[draw=modeltabddpm, fill=modeltabddpm] coordinates { (8,0.7717) };
\addplot+[draw=modeltabdiff, fill=modeltabdiff] coordinates { (9,0.7252) };
\addplot+[draw=modeltabpfgen, fill=modeltabpfgen] coordinates { (10,0.7886) };
\addplot+[draw=modeltabsyn, fill=modeltabsyn] coordinates { (11,0.7185) };
\addplot+[draw=modeltvae, fill=modeltvae] coordinates { (12,0.6794) };
\nextgroupplot[title={Mixed}, ylabel={Derived subgroup score}, xtick={1,2,3,4,5,6,7,8,9,10,11,12}, xticklabels={REAL,ARF,BayesNet,CTGAN,ForestDiffusion,RealTabFormer,TabbyFlow,TabDDPM,TabDiff,TabPFGen,TabSyn,TVAE}]
\addplot+[draw=modelreal, fill=modelreal] coordinates { (1,1.0000) };
\addplot+[draw=modelarf, fill=modelarf] coordinates { (2,0.6940) };
\addplot+[draw=modelbayesnet, fill=modelbayesnet] coordinates { (3,0.7234) };
\addplot+[draw=modelctgan, fill=modelctgan] coordinates { (4,0.6184) };
\addplot+[draw=modelforestdiffusion, fill=modelforestdiffusion] coordinates { (5,0.6293) };
\addplot+[draw=modelrealtabformer, fill=modelrealtabformer] coordinates { (6,0.8011) };
\addplot+[draw=modeltabbyflow, fill=modeltabbyflow] coordinates { (7,0.6557) };
\addplot+[draw=modeltabddpm, fill=modeltabddpm] coordinates { (8,0.6123) };
\addplot+[draw=modeltabdiff, fill=modeltabdiff] coordinates { (9,0.6799) };
\addplot+[draw=modeltabpfgen, fill=modeltabpfgen] coordinates { (10,0.6755) };
\addplot+[draw=modeltabsyn, fill=modeltabsyn] coordinates { (11,0.6633) };
\addplot+[draw=modeltvae, fill=modeltvae] coordinates { (12,0.5212) };
\nextgroupplot[title={Numerical}, ylabel={Derived subgroup score}, xtick={1,2,3,4,5,6,7,8,9,10,11,12}, xticklabels={REAL,ARF,BayesNet,CTGAN,ForestDiffusion,RealTabFormer,TabbyFlow,TabDDPM,TabDiff,TabPFGen,TabSyn,TVAE}]
\addplot+[draw=modelreal, fill=modelreal] coordinates { (1,1.0000) };
\addplot+[draw=modelarf, fill=modelarf] coordinates { (2,0.4418) };
\addplot+[draw=modelbayesnet, fill=modelbayesnet] coordinates { (3,0.4923) };
\addplot+[draw=modelctgan, fill=modelctgan] coordinates { (4,0.4365) };
\addplot+[draw=modelforestdiffusion, fill=modelforestdiffusion] coordinates { (5,0.3769) };
\addplot+[draw=modelrealtabformer, fill=modelrealtabformer] coordinates { (6,0.6245) };
\addplot+[draw=modeltabbyflow, fill=modeltabbyflow] coordinates { (7,0.4008) };
\addplot+[draw=modeltabddpm, fill=modeltabddpm] coordinates { (8,0.3677) };
\addplot+[draw=modeltabdiff, fill=modeltabdiff] coordinates { (9,0.4097) };
\addplot+[draw=modeltabpfgen, fill=modeltabpfgen] coordinates { (10,0.4357) };
\addplot+[draw=modeltabsyn, fill=modeltabsyn] coordinates { (11,0.4059) };
\addplot+[draw=modeltvae, fill=modeltvae] coordinates { (12,0.4640) };
\end{groupplot}
\end{tikzpicture}
\end{document}