
我的長條圖垂直對齊有問題。我開始對我的數據使用單一 xbar 圖表,但它看起來很糟糕,因為一個項目非常大,另一個項目非常小。因此,我有為每個項目製作多個圖表的想法,但它們並沒有真正對齊。我希望能夠比較不同的情節。
\documentclass{report}
\usepackage{pgfplots}
\usepackage{tikz}
\begin{document}
\begin{figure}
\begin{tikzpicture}
\begin{axis}[tickwidth = 0pt,xbar, xmin=0, width=12cm, height=3.5cm, enlarge y limits=0.5, symbolic y coords={no,yes}, ytick=data, nodes near coords,y axis line style = { opacity = 0 },
axis x line = none ]
\addplot coordinates {(1000000,yes) (2000000,no)};
\addplot coordinates {(4000000,yes) (1000000,no)};
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}[ tickwidth= 0pt,xbar, xmin=0, width=12cm, height=3.5cm, enlarge y limits=0.5, symbolic y coords={noooooo,yeeeeees}, ytick=data, nodes near coords,y axis line style = { opacity = 0 },
axis x line = none ]
\addplot coordinates {(3,noooooo) (7,yeeeeees)};
\addplot coordinates {(30,noooooo) (1,yeeeeees)};
\end{axis}
\end{tikzpicture}
\end{figure}
\begin{figure}
\begin{tikzpicture}
\begin{axis}[ tickwidth= 0pt,xbar, xmin=0, enlarge y limits=0.5, symbolic y coords={noooooo,yeeeeees, yes, no}, ytick=data, nodes near coords,y axis line style = { opacity = 0 },
axis x line = none ]
\addplot coordinates {(3,noooooo) (7,yeeeeees) (1000000,yes) (2000000,no)};
\addplot coordinates {(30,noooooo) (1,yeeeeees)(4000000,yes) (1000000,no)};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
答案1
我想垂直對齊繪圖的最簡單方法就是簡單地使用該groupplots
庫。
symbolic coords
(請注意,目前在 中使用時似乎存在錯誤groupplot
。這就是為什麼我需要使用不同的方法來提供數據。而且因為我無論如何都「被迫」重述數據,所以我也將它們coordinates
從這table
也更加靈活。
詳細內容請看程式碼中的註解。
% used PGFPlots v1.16
\documentclass[border=5pt]{standalone}
\usepackage{pgfplots}
% load the `groupplots` library
\usepgfplotslibrary{groupplots}
\begin{document}
\begin{tikzpicture}
\begin{groupplot}[
group style={
% define `groupplot` size (2 vertical plots) ...
group size=1 by 2,
% ... and the distance between the plots
vertical sep=5mm,
},
% (here are your options which are in common for all plots)
width=12cm,
height=3.5cm,
tickwidth=0pt,
xbar,
xmin=0,
enlarge y limits={abs=0.5}, % <-- (adapted)
ytick=data,
nodes near coords,
y axis line style={opacity=0},
axis x line=none,
legend style={
% position the legend below the plot
at={(0.0,-0.1)},
anchor=north west,
% (add the rest of style you want to use here)
},
% use the coordinate index for the y value
% (which is needed after restating the data `coordinates` to a `table`)
table/y expr={\coordindex},
]
% start the first plot
\nextgroupplot[
% names to be stated as `yticklabels`
% (which were before the `symbolic y coords`)
yticklabels={no,yes},
]
% restated data from `coordinates` to `table` which is much simpler
% (one could also combine all data in a single data file and call
% different columns from that here)
\addplot table {
1000000
2000000
};
\addplot table {
4000000
1000000
};
\nextgroupplot[yticklabels={noooooo,yeeeeees}]
\addplot table {
3
7
};
\addplot table {
30
1
};
% add the legend entries to the last `\nextgroupplot`
\legend{a,b}
\end{groupplot}
\end{tikzpicture}
\end{document}