For certain functions it is convenient and commonplace to plot one dataset with two x axes. My example at hand is a function of the form f(T)=A*exp(-H/(R*T)), which is to be plotted with 1/T on the x axis and log(f) on the y axis. In this form, it conveniently appears as a straight line, but for ease of reading the actual temperature T instead of 1/T, it is common to put the corresponding T values on a second x axis in the same plot (which is then of course reversed and also not linearly spaced). How do I achieve this with Julia and Plotly?
Here is an example of the type of plot I try to make. For what it's worth, in Gnuplot the additional second (upper) x-axis would be created with set link x2 via 1./x inverse 1./x.

