In the MWE below, I would like the nodes to align vertically. Giving them the same pos doesn't seem to do that. I can try to align them by adjusting the pos using trial and error but this is tedious, especially since I have several similar plots to build. What's the best way to handle this?
(I have found this to happen with \addplot table but not using \addplot with a formula. But I haven't tested that extensively.)
\documentclass[border=5]{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning}
\usepackage{pgfplots}
\pgfplotsset{compat=1.10}
\begin{filecontents}{mwe.dat}
-6.9282,486.63,682.22
-4.0426,373.74,569.33
-1.1569,260.82,456.4
1.7287,147.95,343.53
4.6144,46.862,230.63
7.5,41.138,118.85
10.386,52.68,43.39
13.271,64.223,44.245
16.157,75.765,55.764
19.043,87.308,67.306
21.928,98.851,78.848
\end{filecontents}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot[black,mark=none] table [col sep=comma,x index=0,y index=1] {mwe.dat}
node[above,pos=0.95] {$f_1(x)$};
\addplot[mark=none,black] table [col sep=comma,x index=0,y index=2] {mwe.dat}
node[below,pos=0.95] {$f_2(x)$};
\end{axis}
\end{tikzpicture}
\end{document}



