In a basic plot, can the Y scale be moved to the right side?
Is this what you looking for?
Plot[Sin[x], {x, 0, 6 Pi}, AxesOrigin -> {6 Pi, 0} , ScalingFunctions -> {Identity, "Reverse"} , Frame -> Automatic , FrameTicks -> {{False, True}, {False, True}} ]
Best Regards,....Jos
You can specify the point of origin of the axes.
Plot[Sin[x], {x, 0, 6 Pi}, AxesOrigin -> {6 Pi, 0}]
Thanks! Somehow "Frame->Automatic" was blocking the scale shift.