pgfplots:组 ybar

pgfplots:组 ybar

我想在 pgfplots 中对一些条形进行分组。在第一个图中,两个左侧条形和两个右侧条形应该分组。当然我会不是想要操纵数据,如图二所示。标签也应该随条形图移动。

图2仅供参考!

\documentclass{article}

\usepackage{pgfplots}
\pgfplotsset{compat=1.15}

\begin{document}

\begin{tikzpicture}
\begin{axis}[
    ybar,
    xmin=0,
    xmax=5,
    ymin=0,
    ymax=5
    ]
\addplot coordinates {(1,1) (2,2) (3,3) (4,4)};
\end{axis}
\end{tikzpicture}

\begin{tikzpicture}
\begin{axis}[
    ybar,
    xmin=0,
    xmax=5,
    ymin=0,
    ymax=5
    ]
\addplot coordinates {(1.3,1) (1.7,2) (3.3,3) (3.7,4)}; 
\end{axis}
\end{tikzpicture}

\end{document}

在此处输入图片描述

相关内容