I'm making a bar chart with pgfplots and would like to put an asterisk above some bars to show statistical significance (p < 0.05). Any ideas?
Here's an example graph:
\begin{tikzpicture}
\begin{axis}[
symbolic x coords={(a),(b),(c),(d),(e)},
xtick=data]
\addplot[ybar] coordinates {
((a),51365) % I'd like to put an asterisk above some of these
((b),74531)
((c),52862)
((d),78999)
((e),71825)
};
\end{axis}
\end{tikzpicture}


[pgfplots] filecontentson this site for many examples. – percusse Sep 30 '12 at 17:31