With PSTricks' swapaxes.

\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pst-plot}
\psset{algebraic}
\begin{document}
\begin{pspicture}[showgrid](-2,-2)(2,2)
\psplot{-1}{1}{x^2}
\psplot[linecolor=red,swapaxes]{-1}{1}{x^2}
\end{pspicture}
\end{document}
Or with PSTricks' \rput and \psscalebox.
\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pst-plot}
\psset{algebraic}
\begin{document}
\begin{pspicture}[showgrid](-2,-2)(2,2)
\psplot{-1}{1.4}{x^2}
\psscalebox{1 -1}{\rput{-90}(0,0){\psplot[linecolor=red]{-1}{1.4}{x^2}}}
\end{pspicture}
\end{document}
Unfortunately, PSTricks has another method with parametric curve as follows.
\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pst-plot}
\psset{algebraic}
\begin{document}
\begin{pspicture}[showgrid](-2,-2)(2,2)
\psplot{-1}{1.4}{x^2}
\psparametricplot[linecolor=red]{-1}{1.4}{t^2|t}
\end{pspicture}
\end{document}
\draw[domain=0:2,variable=\y] plot({f(\y)},\y);work for you? – bencarabelli Mar 27 '13 at 16:05