Agregar etiqueta a las barras en el gráfico de barras

Agregar etiqueta a las barras en el gráfico de barras

Estoy intentando colocar etiquetas sobre las barras de mi gráfico de barras.

encontré \node [above] at (axis cs: 1, 810) {$Q1$}; , pero éste se centra en el medio entre dos barras. Quiero que el valor del eje y flote sobre la parte superior de la barra (o tal vez dentro de ella)

Mi MWE se ve así, no es muy expresivo sin etiquetas. ¿alguna sugerencia?

  \documentclass{article}
\usepackage{pgfplots}

\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
    \begin{axis}[
        ybar,
        width  = 12cm,
        height = 5cm,
        bar width=20pt,
        ylabel={number of participants},
        symbolic x coords={High School, Bachelor degree, Master degree, Ph.D or similar},
        xtick = data,
    ]
    \addplot[fill=blue] coordinates {(High School, 1) (Bachelor degree, 2) (Master degree, 3) (Ph.D or similar, 4)};
     \addplot[fill=red] coordinates {(High School, 3) (Bachelor degree, 2) (Master degree, 8) (Ph.D or similar, 4)};
      \legend{Native speaker, Non-native speaker}
    \end{axis}
\end{tikzpicture}
\caption{Participants: Level of education}
\label{participantsLanguageOverviewNonNative}
\end{figure}
\end{document}

Respuesta1

La nodes near coordsclave hace exactamente esto, así que agréguela a las axisopciones y ya casi habrá terminado. También querrás estirar un poco el eje, ya que no hay suficiente espacio para las etiquetas como está ahora, así que agrégalo enlarge y limits={value=0.2,upper}también. Yo también pondría ymin=0. Finalmente, mueve la leyenda con legend pos=north west, para que no tape las barras.

Si desea las etiquetas dentro de las barras, agregue nodes near coords align=below, en cuyo caso no necesita el archivo enlarge y limits.

ingrese la descripción de la imagen aquí

\documentclass{article}
\usepackage{pgfplots}

\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
    \begin{axis}[
        ybar,
        ymin=0,
        width=12cm,
        height=5cm,
        bar width=20pt,
        ylabel={number of participants},
        nodes near coords,
 %      nodes near coords align=below, % places labels inside bars
        symbolic x coords={High School, Bachelor degree, Master degree, Ph.D or similar},
        xtick = data,
        enlarge y limits={value=0.2,upper},
        legend pos=north west
    ]
    \addplot[fill=blue] coordinates {(High School, 1) (Bachelor degree, 2) (Master degree, 3) (Ph.D or similar, 4)};
     \addplot[fill=red] coordinates {(High School, 3) (Bachelor degree, 2) (Master degree, 8) (Ph.D or similar, 4)};
      \legend{Native speaker, Non-native speaker}
    \end{axis}
\end{tikzpicture}
\caption{Participants: Level of education}
\label{participantsLanguageOverviewNonNative}
\end{figure}
\end{document}

información relacionada