Basically, I'm trying to "rotate" a plot clockwise so that the former x-axis is pointing down, and the former y-axis is pointing to the right. From reading some answers on here, I gathered that I can get axes in the right general orientations using ParametricPlot:
ParametricPlot[{Sin[7 x] - 1,x}, {x, 0, 1},
PlotRange -> {{-3, 0}, {0, 1}},
Frame -> True,
AspectRatio -> 5/8,
FrameLabel -> {"Label 1", "Label 2"}]

But the problem is that the vertical axis still points up, and I need it to be going the other direction: I need it to be 0 at the top and 1 at the bottom.
Does anyone have any solution to this? ScalingFunctions would have worked beautifully from what I've been reading, but this seems to have been "fixed" years ago without a similar functionality put in to replace it.
Any help is appreciated!


FrameTicks. Does this not give the correct output?:ParametricPlot[{Sin[7 x] - 1, -x}, {x, 0, 1}, Frame -> True, FrameTicks -> {Automatic, {-#, #} & /@ Range[0, 1, 0.2]}]– Mr.Wizard Feb 16 '15 at 13:51ScalingFunctionsdoes work too:ParametricPlot[{Sin[7 x] - 1, x}, {x, 0, 1}, Frame -> True, ScalingFunctions -> {Identity, "Reverse"}]– Mr.Wizard Feb 16 '15 at 13:54