I'm just starting to mess with pgfplots and just had a quick question in formatting bar charts. Specifically, I was trying to add labels to each of my y ticks and i couldn't figure it out.
\begin{tikzpicture}
\begin{axis}[
title={How Well Do You Relate to Your Online Persona?
every axis plot post/.style={/pgf/number format/fixed},
ybar=5pt,
bar width=80pt,
x=3cm,
ymin=0,
axis on top,
ymax=6,
xtick=data,
enlarge x limits=0.2,
symbolic x coords={Person1,Person2},
]
\addplot coordinates {(Person1,5) (Person2,2)};
\end{axis}
\end{tikzpicture}

ytick={0,1,...,6}, yticklabels={Not at all, a bit, so so, quite well, well enough, very well},. Your code is not compilable though; you're missing},at the end of the title field. – jub0bs May 21 '13 at 18:47ytick={0,...,6}, there will be ticks at every integer value. – Jake May 21 '13 at 18:48