search for: 3dimensional

Displaying 4 results from an estimated 4 matches for "3dimensional".

Did you mean: dimensional
2008 Mar 31
1
plot 3dimensional points with "log" axes
Dear R users I am looking for functions that can plot 3 dimensional figures *with logarithmic axes*. I tried scatterplot3d (under package scatterplot3d) but the log parameter is not implemented (although "log" appears in the parameter list). Does anyone has some suggestions? Thanks a lot Austin
2009 Oct 18
2
rbind to array members
Hi, I would like to add rows to arbitrary tables within a 3dimensional array. I can directly add data to an existing row of a table: > x <- array(0,c(1,3,2))> x[,,1] <- c(1,2,3) And I can even add a row to the table and assign to another object. > y <- rbind(x[,,1], c(4,5,6)) and 'y' is what I want it to be:> y?? ? [,1] [,2] [,3][1,] ? ?1...
2011 Jan 04
2
Print plot to pdf, jpg or any other format when using scatter3d error
...t it to output. I tried a few things but none of them worked and am lost as what to do now. I am using the scatter3d function, and it prints out the graphs on tot he screen without any problems, but when it comes to writing them to a file i cant make it work. Is there any other way of producing 3dimensional graphs (they dont have to be rotatable/interactive after the print out)? The code is fairly simple and is listed down : #libraries library(RMySQL) library(rgl) library(scatterplot3d) library(Rcmdr) ############################################################################## #database connecti...
2008 Dec 11
4
how to plot implicit functions
Dear R users -- I think this question was asked before but there was no reply to it. I would appreciate any suggestion any of you might have. I am interested in plotting several "implicit functions" (F(x,y,z)=0) on the same fig. Is there anyone who has an example code of how to do this? Thank you Yihsu