答案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}