条形图中的误差线/测量不确定度

条形图中的误差线/测量不确定度

我正在绘制实验的 pH 结果,测量不确定度为 ± 0.1。

\documentclass[10pt]{standalone}
\usepackage{pgfplots}
\usepackage{siunitx}
\usepackage{tikz}
\usepackage{mhchem}
\usetikzlibrary{patterns}
\pgfplotsset{compat=1.16}
\definecolor{mygray}{HTML}{c7c7c7}
\definecolor{myblue}{HTML}{4385f5}
\definecolor{myred}{HTML}{ea4136}
\definecolor{myorange}{HTML}{fcbc05}
\begin{document}
\begin{tikzpicture}
  \centering
  \begin{axis}[
    ybar=0pt, enlarge x limits=0.25, legend style={at={(0.5,-0.15)},anchor=north,legend columns=-1,/tikz/every even column/.append style={column sep=0.1cm}}, legend style={draw=none,/tikz/every even column/.append style={column sep=0.3cm}},
height=6cm, width=11cm,
        ymajorgrids, tick align=inside,        
        ymin=0, ymax=14,
        ytick={0,2,4,...,14},        
        ylabel={pH},
        y axis line style={opacity=0},
        tickwidth=0pt,
        ylabel={pH},
        symbolic x coords={Reference, Aabach, Kleine Emme, Grosse Aa},
       xtick=data,
       nodes near coords,every node near coord/.append style={font=\tiny},
       bar width=13pt,
                  cycle list={        
           {fill=mygray,draw=black},           
           {fill=myred,draw=black},
           {fill=myblue,draw=black},    
    {fill=myorange,draw=black}}
    ]
\addplot coordinates {(Reference,7.3) (Aabach,8.5) (Kleine Emme, 8.2) (Grosse Aa, 8.1)};
\addplot coordinates {(Reference,7.8) (Aabach,8.5) (Kleine Emme, 8.3) (Grosse Aa, 8.3)};
\addplot coordinates {(Reference,7.8) (Aabach,8.4) (Kleine Emme, 7.9) (Grosse Aa, 8.2)};
\addplot coordinates {(Reference,7.8) (Aabach,7.8) (Kleine Emme,7.7) (Grosse Aa,7.8)};
    \legend{NT, DN, SYF, NAF}

                \addplot+ [ %from https://tex.stackexchange.com/questions/470674/adding-error-bars-to-bar-plot and https://tex.stackexchange.com/questions/424758/plotting-error-bars-in-pgf-plots
            error bars/.cd,
                y dir=both,
                y fixed=0.1,
        ] coordinates {
            (Reference,7.3) +- (0,0.1)
            (Kleine Emme,7.9) +- (0,0.1)
        };
  \end{axis}
  \end{tikzpicture}
\end{document}

代码的问题在于创建了重复的条形图: 误差线

为什么每个 x-tick 只能有四个条形图,并且每个条形图都有一个误差线?

答案1

您无需添加另一个\addplot命令来绘制误差线(这会添加您不想要的误差线),您需要将“误差线”内容添加到每个先前的\addplot命令中。为了避免一遍又一遍地重复,您还可以将这些选项添加到选项中axis

有关详细信息,请查看代码中的注释。

% used PGFPlots v1.16
\documentclass[border=5pt]{standalone}
\usepackage{pgfplots}
    \pgfplotsset{compat=1.3}
    \definecolor{mygray}{HTML}{c7c7c7}
    \definecolor{myblue}{HTML}{4385f5}
    \definecolor{myred}{HTML}{ea4136}
    \definecolor{myorange}{HTML}{fcbc05}
\begin{document}
\begin{tikzpicture}
    \begin{axis}[
        ybar=0pt,
        enlarge x limits=0.25,
        % (merged both styles)
        legend style={
            at={(0.5,-0.15)},
            anchor=north,
            legend columns=-1,
            draw=none,
            /tikz/every even column/.append style={column sep=0.3cm},
        },
        height=6cm,
        width=11cm,
        ymajorgrids,
        tick align=inside,
        ymin=0,
        ymax=14,
        ytick distance=2,       % <-- (changed)
        ylabel={pH},
        y axis line style={opacity=0},
        tickwidth=0pt,
        ylabel={pH},
        symbolic x coords={Reference, Aabach, Kleine Emme, Grosse Aa},
        xtick=data,
        nodes near coords,
        every node near coord/.append style={font=\tiny},
        bar width=13pt,
        cycle list={
            {fill=mygray,draw=black},
            {fill=myred,draw=black},
            {fill=myblue,draw=black},
            {fill=myorange,draw=black}%
        },
        error bars/y dir=both,      % <-- added
        error bars/y fixed=0.1,     % <-- added
    ]
        \addplot coordinates {(Reference,7.3) (Aabach,8.5) (Kleine Emme,8.2) (Grosse Aa,8.1)};
        \addplot coordinates {(Reference,7.8) (Aabach,8.5) (Kleine Emme,8.3) (Grosse Aa,8.3)};
        \addplot coordinates {(Reference,7.8) (Aabach,8.4) (Kleine Emme,7.9) (Grosse Aa,8.2)};
        \addplot coordinates {(Reference,7.8) (Aabach,7.8) (Kleine Emme,7.7) (Grosse Aa,7.8)};

        \legend{NT, DN, SYF, NAF}
    \end{axis}
\end{tikzpicture}
\end{document}

该图显示了上述代码的结果

相关内容