I would like to add a label to the axes of my plot. This is my code:
\begin{figure}[!h]
\centering
\begin{tikzpicture}[scale=1]
\begin{axis}[%
% Lengend position
legend pos = outer north east,
% We need a tick for every data
xtick = data,
% The ticks label are provided in the file as the column named Num
xticklabels from table = {test.dat}{Num}]
% How the data are separated.
% \pgfplotstableset{col sep = tab}
% We need to simulate an x coord since it is litteral in the data file. I choose to index on the line.
\addplot table [x expr = \lineno, y = Min] {test.dat};
\addlegendentry{Min}
\addplot table [x expr = \lineno, y = Moy] {test.dat};
\addlegendentry{Moy}
\addplot table [x expr = \lineno, y = Max] {test.dat};
\addlegendentry{Max}
\end{axis}
\end{tikzpicture}
\caption{Propagation d'une publication générée avec la politique est \bf {Amis Seulement}}
\end{figure}

xlabelandylabel. It's not too hard to find this in the manual. – Jake May 10 '12 at 11:38