Displaying 1 result from an estimated 1 matches for "ylabvals".
Did you mean:
xlabvals
2000 Dec 07
1
Reversing x-axis
Dear all,
I'm making a system to create a star-chart, and I have encountered one of
the intuitive and clearly thoughtful conventions that are so common in
astronomy :-J... Well, the point being, I have to reverse the x-axis.
I figured, I might just set xlim=rev(range(x)). Do e.g.
> x <- 0:5
> y <- (0:5)^3
> plot(x, y)
> plot(x, y, xlim=rev(range(x)))
The problem is that here