
tex.stackexchange で pgfplots に関する非常に役立つ情報がたくさん見つかりました。ありがとうございます!
しかし、どうすればいいのかわかりません:
- 「without」または「with」の後に新しい行を挿入します
- 値0またはバー全体を非表示にする
- x 目盛りを変更して小数点以下がなくなるようにします ([10^..])
- グラフの外側のビーインプロットの座標に近いノードを防ぐ
2つのグラフ:
ソースコード:
\documentclass[a4paper]{report}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usepackage{pgfplots}
\title{Tests}
\pgfplotsset{counter_barchart/.style={
width=0.85\textwidth,
height=5cm,
xbar,
xmin=0,
xmajorgrids = true,
tick align = outside, xtick pos = left,
x tick label style={ /pgf/number format/1000 sep=},
enlarge y limits=0.4,
symbolic y coords={Ass. Optimization,with Optimization,without Optimization},
ytick=data,
yticklabel style={text width=0.2\textwidth},
every node near coord/.append style={/pgf/number format/1000 sep=},
nodes near coords,
nodes near coords align={horizontal},
legend style={at={(0.5,-0.35)},anchor=north,legend columns=-1},
reverse legend
}}
\begin{document}
\begin{tikzpicture}
\begin{axis}[counter_barchart]
\addplot coordinates {(0,Ass. Optimization)(19243,with Optimization) (8898,without Optimization)};
\addplot coordinates {(7854,Ass. Optimization) (6652,with Optimization) (6548,without Optimization)};
\legend{Second,First}
\end{axis}
\end{tikzpicture}
\\
\begin{tikzpicture}
\begin{axis}[counter_barchart]
\addplot coordinates {(3985,without Optimization) (5456,with Optimization)};
\addplot coordinates {(5223,without Optimization) (11054,with Optimization)};
\legend{Second,First}
\end{axis}
\end{tikzpicture}
\end{document}
答え1
のハイフネーションを回避するにはyticklabel
:
yticklabel style={text width=0.2\textwidth,align=flush left},
値 0 を座標の近くのノードとして非表示にするには:
nodes near coords={%
\pgfmathtruncatemacro\NNC{\pgfkeysvalueof{/data point/x}}%
\ifnumequal{\NNC}{0}{}{\NNC}% needs package etoolbox
},
xtick スケーリングを回避するには:
scaled x ticks=false,
座標の近くのノードがチャートの外側にプロットされるのを防ぐには:
enlarge x limits={0.15,upper},
コード:
\documentclass[a4paper]{report}
\usepackage{etoolbox}
\usepackage{pgfplots}
\pgfplotsset{
counter_barchart/.style={
width=0.85\textwidth,
height=5cm,
xbar,
xmin=0,
xmajorgrids = true,
tick align = outside, xtick pos = left,
x tick label style={/pgf/number format/1000 sep=},
scaled x ticks=false,
enlarge y limits=0.4,
enlarge x limits={0.15,upper},
symbolic y coords={Ass. Optimization,with Optimization,without Optimization},
ytick=data,
yticklabel style={text width=0.2\textwidth,align=flush left},
nodes near coords={%
\pgfmathtruncatemacro\NNC{\pgfkeysvalueof{/data point/x}}%
\ifnumequal{\NNC}{0}{}{\NNC}%
},
nodes near coords align={horizontal},
legend style={at={(0.5,-0.35)},anchor=north,legend columns=-1},
reverse legend
}
}
\begin{document}
\begin{tikzpicture}
\begin{axis}[counter_barchart,xtick={0,4000,8000,12000,16000,20000}]
\addplot coordinates {(0,Ass. Optimization)(19243,with Optimization) (8898,without Optimization)};
\addplot coordinates {(7854,Ass. Optimization) (6652,with Optimization) (6548,without Optimization)};
\legend{Second,First}
\end{axis}
\end{tikzpicture}
\vspace{1cm}
\begin{tikzpicture}
\begin{axis}[counter_barchart]
\addplot coordinates {(3985,without Optimization) (5456,with Optimization)};
\addplot coordinates {(5223,without Optimization) (11054,with Optimization)};
\legend{Second,First}
\end{axis}
\end{tikzpicture}
\end{document}