search for: cuboid

Displaying 5 results from an estimated 5 matches for "cuboid".

Did you mean: cuboids
2013 Jan 30
0
texture mapping images on the faces of a cuboid with rgl
...rocess the grey and rgb attributes as in the code in the above page. Would appreciate it if I could get some explicit help on processing the image matrix. I don't follow in detail how a square portion of the graphic is extracted also. 2. Instead of a cube, I am interested in mapping images on a cuboid (l!=b!=h). Could I get tips on how this can be done. How should the dimensions of the image matrix be tailored then? 3. The following line in the code appears to identify and fix the corner points : coords <- rbind(  c(0 , 2, 3),  c(1 , 3, 2),  c(3, 0 , 2),  c(2, 1 , 3),  c(2, 3, 0 ),  c(3, 2,...
2011 Jun 14
1
Obtaining OLAP cubes using R
Hello All, I have a dataset and I wish to obtain all possible data cuboids from it using R . For eg if my data frame is : A B C 1 1 1 1 2 1 2 2 1 The output intended is : A=1 A=2 B=1 B=2 C=1 A=1,B=1 A=1,B=2 A=2,B=2 A=1,C=1 A=2,C=1 B=1,C=1 B=2,C=1 A=1,B=1,C=1 A=1,B=2,C=1 A=2,B=2,C=1 Are there any function(s) to do this in R ? I tried a combinat...
2011 Jun 15
3
Column of numbers added to dataframe when saving with read.csv
...e column full of 1,2,3, ... is added to the file when saving it. Can someone pelase help me to get rid of it? Thanks Paolo On 14 June 2011 13:59, Saravanan <saravanan.thirumuruganathan@gmail.com>wrote: > Hello All, > > I have a dataset and I wish to obtain all possible data cuboids from it > using R . For eg if my data frame is : > > A B C > 1 1 1 > 1 2 1 > 2 2 1 > > The output intended is : > A=1 > A=2 > B=1 > B=2 > C=1 > A=1,B=1 > A=1,B=2 > A=2,B=2 > A=1,C=1 > A=2,C=1 > B=1,C=1 > B=2,C=1 &g...
2010 Apr 19
2
Drawing a line with misc3d
Hi the list, I would like to draw some lines with misc3d. I find a lot of tools to draw surfaces, but nothing for simple line... Is it possible? Note that I know that it is possible to draw lines with rgl (using lines3d), but I need to do it with misc3d to export the drawing in .asy format. Any solution? Christophe
2010 Nov 05
2
About 5.1 Arrays
Hi folks, (Learning R) 5.1 Arrays http://cran.r-project.org/doc/manuals/R-intro.html#Vectors-and-assignment 1) If continued on previous example (3.1 Intrinsic attributes: mode and length), > z <- 0:9 > dim(z) <- c(3,5,100) Error in dim(z) <- c(3, 5, 100) : dims [product 1500] do not match the length of object [10] failed. 2) Ran; > z <- 0:1499 > dim(z) <-