比较折线图

比较折线图

我想要制作如下的比较图表: 在此处输入图片描述

我找到了有关条形图的信息,但没有找到我试图找到的有关线比较图的信息。有什么帮助吗?谢谢。

答案1

此类图称为梳状图,在 pgfplots 手册 (v 1.16) 的 4.5.7 梳状图部分有详细描述。由于我没有您的数据,因此我从那里复制了示例,并稍微修改了第二个图的坐标,还引入了非平凡的虚线图案。

\documentclass[tikz,border=3.14mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.16}
\begin{document}
\begin{tikzpicture} 
\begin{axis}
    \addplot+ [line width=1pt,
        ycomb,
    ] coordinates {
        (0,3) (1,2) (2,4) (3,1) (4,2)
    };
    \addplot+ [line width=1pt,dash pattern=on 4pt off 1pt on 2pt off 1pt,
        ycomb,
    ] coordinates {
        (0,3.4) (1,1.8) (2,4.2) (3,1.2) (4,1.6)
    };
\end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容