Estou tentando colocar rótulos nas barras do meu gráfico de barras.
Eu encontrei \node [above] at (axis cs: 1, 810) {$Q1$};
, mas este centraliza-se no meio entre duas barras. Quero que o valor do eixo y flutue no topo da barra (ou talvez dentro dela)
meu MWE fica assim, não é muito expressivo sem rótulos. alguma sugestão?
\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}
Responder1
A nodes near coords
chave faz exatamente isso, então adicione-a às axis
opções e estará quase pronto. Você também vai querer esticar um pouco o eixo, pois não há espaço suficiente para os rótulos como está agora, então adicione enlarge y limits={value=0.2,upper}
também. Eu também definiria ymin=0
. Por fim, mova a legenda com legend pos=north west
, para que ela não cubra as barras.
Se você quiser os rótulos dentro das barras, adicione nodes near coords align=below
; nesse caso, você não precisa do enlarge y limits
.
\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}