Displaying 2 results from an estimated 2 matches for "fluidlevel".
2005 Mar 16
1
Help in persp (VERY URGENT ASSISTANCE)
...me steps.I have given the code which i tried for drawing 3d surface using persp.I need to label the axes with scales
 
 z <- array(topnew2$V2, dim=c(600,2))
 x <- 10 * (1:nrow(z))
 y <- (1:ncol(z))
 persp(x, y, z, theta = 30, phi = 30, expand = 0.5, col = "lightblue", xlab ="fluidlevel", ylab ="time", zlab = "probability",xlim=range(x),ylim=range(y))
 
 
I have a text file  of format:
 
     V1 V2   V3
1     1  0   10
2     1  0   20
3     1  0   30
4     1  0   40
5     1  0   50
..................
 now i converted to matrix as "z" 
 
  z:.......
2005 Mar 16
0
Help regarding persp
...iven the commands  which i tried for drawing 3d surface using persp.I would like to label the axes using the scales.
 
 z <- array(topnew2$V2, dim=c(600,2))
 x <- 10 * (1:nrow(z))
 y <- (1:ncol(z))
 persp(x, y, z, theta = 30, phi = 30, expand = 0.5, col = "lightblue", xlab ="fluidlevel", ylab ="time", zlab = "probability",xlim=range(x),ylim=range(y))
 
 
I have a text file  of format:
 
     V1 V2   V3
1     1  0   10
2     1  0   20
3     1  0   30
4     1  0   40
5     1  0   50
..................
 now i converted to matrix as "z" 
 
  z:.......