I want to plot ONE dataset in a pgfplots and use TWO axis with different units on each axis. For example I have one dataset with temperature and want to print a °C scale on the left and a °F on the right.

Thank you :-)
I didn't find the answer yet with google :-(
PS: This is such a great platform and it helps me so much - thanks for all the other answers on this side :-)
This is my code so far with the left axis:
\documentclass[a4paper,10pt]{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xmin=0, xmax=100, %- show range
ymin=345.95, ymax=346.17, %- show range
domain=0:100, %- calc range
ytick={346.16,346.11,...,340}, %- labels on the left side
y tick label style={
/pgf/number format/.cd,
fixed,
fixed zerofill,
precision=2,
/tikz/.cd
},
samples=200,
no markers,
enlargelimits=false,
xlabel={x-axis},
ylabel={Temperature T[K]},
]
\addplot gnuplot { (346.16 - 0.002 * x)} ;
\addplot gnuplot [style=densely dotted] { 346.16 }
node[below left] at (axis cs:100,346.16) {$73^\circ$C};
\end{axis}\end{tikzpicture}
\end{document}
