The simplest way is to swap x and y in your plot statement and define the x or y-axis range backwards.
Rotate Clockwise: plot, y, x, yrange=[xmax, xmin]
Anti-Clockwise: plot, y, x, xrange=[ymax,ymin]
If you want to change which axis is labeled look up the AXIS command
|