如何使用LaTex在条形图上绘制最小值和最大值?

时间:2019-05-06 15:23:13

标签: plot latex bar-chart

是否有一种方法可以将最小值和最大值绘制到平均条形图中,以类似于下面的附图?

谢谢

enter image description here

1 个答案:

答案 0 :(得分:2)

使用pgfplots可以做到:

\documentclass{article}

\usepackage{pgfplots}
\pgfplotsset{width=7cm,compat=1.16}

\begin{document}

\begin{tikzpicture} 
\begin{axis}
    \addplot+ [
        ybar,
        error bars/.cd,
            y dir=both, y explicit,
    ] coordinates {
        (0,3) +- (0,1) 
        (1,2) +- (0,0.4) 
        (2,4) +- (0,1)
        (3,1) +- (0,0.6) 
        (4,2) +- (0,0.1)
    };
\end{axis}
\end{tikzpicture}

\end{document}

enter image description here