I have a plot with Celsius on y axis:
plot(y=0:100,x=0:100, main="temperature",xlab="time",ylab="Celsius",type="l")
How can I plot an identical secondary Y scale, but with the units that are shown in Celsius on the y axis as Fahrenheit on second y axis. T(°F) = T(°C) × 9/5 + 32 I need the label positions of the two y axis to correspond exactly so that the secondary y label shows the converted value that is on the primary y label.
Thank you for your help.