Re: [R] i need help about reverse axes

2010-06-04 Thread Uwe Ligges
scatterplot3d() currently does not supoort it, but you can hack an ugly workaround: If you want to do it only once ot twice: mirror your z data at mean(range of z axis) and add z.ticklabs manually (the reverse numbers) Example: x <- 1:10 y <- 1:10 z <- 1:10 s3d <- scatterplot3d(x, y, z) env

[R] i need help about reverse axes

2010-06-03 Thread Ali Alsamawi
Hello im trying to plot 3d with scatterplot packages , everything is work on my program below but my problenm i want to set my pressure level or axis(z-axis) to reverse like from bottom to top, i used function "rev" but not work just for 2d plots the figure in attachment and the program