I'm having some trouble making nice graphs in LaTeX. The original graph I made in Excel looked like this. But then, that's very ugly and I'd like to make one in LaTeX. Therefore, I've searched on it and then found the pgfplots package. I now made some nice bars with it. But I cannot find an option to add the "significance stars" between some bars, which I have easily added with Paint in the Excel figure shown earlier. Can anyone help me out, perhaps with another package, by telling me how to add these stars?
Thanks in advance

E: The code I'm currently using for the graph:
Code: Select all
\documentclass{article}
\usepackage{babel}
\usepackage{graphicx}
\usepackage[font=small, width=0.6\columnwidth, justification=justified, singlelinecheck=false]{caption}
\usepackage{pgfplots}
\pgfplotsset{width=0.9\columnwidth}
\begin{document}
\begin{figure}[h!]
\begin{tikzpicture}
\begin{axis}[
ybar,
ymin=0,
enlarge x limits=0.15,
legend style={at={(0.5,-0.15)},
anchor=north,legend columns=-1},
ylabel={Relative intensity measured},
symbolic x coords={PFC, BLA, DG, Ca 1, Ca 2/3},
xtick=data,
title={Relative calbindin expression},
%nodes near coords,
%nodes near coords align={vertical},
]
\addplot+[error bars, y dir=both, y explicit]
coordinates {
(PFC,8.1) +- (PFC,0.9)
(BLA,22.6) +- (BLA,1.8)
(DG,16.5) +- (DG,0.3)
(Ca 1,9.6) +- (Ca 1,0.5)
(Ca 2/3,9.8) +- (Ca 2/3,1.9)};
\addplot+[error bars, y dir=both, y explicit]
coordinates {
(PFC,20.1) +- (PFC,3.5)
(BLA,16.1) +- (BLA,1.6)
(DG,17.7) +- (DG,2.5)
(Ca 1,9.8) +- (Ca 1,0.8)
(Ca 2/3,8.8) +- (Ca 2/3,0.7)};
%\legend{APO-SUS,APO-UNSUS}
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}