search for: dimesions

Displaying 12 results from an estimated 12 matches for "dimesions".

Did you mean: dimensions
2010 Feb 25
1
binding multidimension array
I don't find rbind, cbind or other bind that bind in other dimesions for multidimension array while keeping the result of the same dimension. For example, say, dim(x)=c(2,3,4), dim(y)=c(3,3,4). I want to have the result z, where dim(z)=c(2+3,3,4), when I bind x and y in the first dimenion. The bind can also be in the 2nd and 3rd dimesion. Could somebody let me kno...
2012 May 07
2
Matrix "BYTES" size
Dear R people. I´m facing a big problem. I need to create a matrix with 10.000 columns and 750.000 rows. matrix<- as.data.frame(matrix(data=0L, nrow=750000, ncol=10000) as you can see, the data frame has huge dimesions. I was able to find out about thr "L" in data, this way I´m telling that my data is "integer" class. By doing this object.size(matrix) tells me that this is half of the matrix when I don´t define as integer (L) The data that I´ll be filling with my matrix will be 0 and 1, nothin...
2009 May 24
2
Assigning variable names from one object to another object
Hello I have 2 datasets say Data1 and Data2 both are of different dimesions. Data1: 120 rows and 6 columns (Varname, Vartype, Labels, Description, ....) The column Varname has 120 rows which has variable names such id, age, gender,.....so on Data2: 12528 rows and 120 columns The column names in this case are V1, V2, ......... V120 (which are default names in R when we s...
2005 May 02
1
Multivariate kernel density estimation
Hi, I need to estimate the density at the mean of a sample of a few thousands data points with a dimesion up to 5. The data is uni-modal and regularly shaped. I couldn't find any kernel density package for R which supports more than 3 dimensions. Have I overlooked a package or does somebody have code for this purpose? Any other advice? Regards, Stephan
2006 Mar 08
1
info() function?
I would like to have some function for getting an overview of the variables in a worksheet. Class, dimesions, length, number of missing values,... Guess it wouldn't be that hard to set up such a function, but I guess there are others who have made it already. Or is it already a standard feature in the base package? Any suggestions? Robert
2005 Apr 21
2
apply vs sapply vs loop - lm() call appl(y)ied on array
...ly the same time of computation. I was astonished since I expected at least sapply to outperfomr the for-loop. Do you have me another solution, which is faster? many thanks here is the code ## ------------------------------------------------------ t.length <- 5 d.dim <- c(t.length,7,8,9) # dimesions: time, x, y, z Y <- array( rep(1:t.length, prod(d.dim)) + rnorm(prod(d.dim), 0, 0.1), d.dim) X <- c(1,3,2,4,5) ## -------- performance tests ## using for loop date() z <- rep(0, prod(d.dim[2:4])) l <- 0 for (i in 1:dim(Y)[4]) for (j in 1:dim(Y)[3]) for (k in 1:dim(Y)[2]) { l...
1999 Nov 07
2
Vorbis status
...bugs on the vorbisfile API/library Hone the LPC approximation routines a bit more. Get the command line player functional (Mike Whitson is also planning to put some time in here). Verify that I understand the LSP probability distributions by making lots of 12-32 dimensional graphs (well, OK, 3 dimesions at a time :-) Code the codebook abstraction learning interface, spec the encode/decode interface. Most of the above doesn't really have an impact on applications coding, it's just libvorbis internal. The external API is just about complete (only one change in the last month, adding a sec...
2012 Oct 23
0
multidimensional Array or Hash with group_by 'created_at'
Hello, i want to create a multidimensional Array or Hash with group_by ''created_at''. 3 dimensions needed: myArray[week][day][data] currently i only created it with 2 dimesions: #model def self.group_per_day all.group_by{|t| t.created_at.strftime("%d. %B, %Y")}.sort #"%U" for Weeks end #controller @pdf_activities = Activity.group_per_day #view -@pdf_activities.each do |day| =day[0] -day[1].each do |activity| =activity.activity thanks --...
2003 May 26
4
spinning and flipping arrays
Hello people, Is there some simple way of spinning and/or flipping arrays in R? Here's what I mean. Suppose that foo is a 2x3x4 array with the following contents: (I know this is different than typing 'foo' at and R prompt, but I'm so used to row major order from using APL, I have a hard time with R's output) > foo[1,,] [,1] [,2] [,3] [,4] [1,] 1 2 3 4
2001 Jan 26
5
ogg pic format (again).. here's why
I sent a little mail some time ago asking if there was going to be an ogg pic-format, and you replied that PNG, MNG and JNG is good enough (sorry for this late answer btw).. But, consider this: The ogg video-format (tarkin ? where do you get these names from anyway ? :) ) needs a way to compress its frames. Are you going to use MNG for that ? :) .. If you had an ogg pic format, that format could
2008 Sep 05
0
Wine release 1.1.4
...uartz/tests: Add a missing CoUninitialize. wintrust/tests: Add a missing FreeLibrary. winspool.drv/tests: Fix a test on Vista/W2K8. Piotr Caban (1): msxml3: Added custom queryresult DISPIDs implementation. Rico Sch?ller (1): wined3d/d3d9: Set the initial scissorrect to the dimesions of the backbuffer from the first swapchain of the device. Rob Shearman (4): widl: Raise RPC_X_SS_IN_NULL_CONTEXT exception for NULL in-only context handles instead of RPC_X_NULL_REF_PTR. rpcrt4: Add tests for RpcBindingReset. winealsa.drv: Use CP_UNIXCP instead of CP_ACP for stri...
2006 Mar 08
0
survival
...vist at ltu.se> Subject: [R] info() function? To: r-help at stat.math.ethz.ch Message-ID: <Pine.GSO.4.58.0603080906360.11827 at delta8.math.ltu.se> Content-Type: TEXT/PLAIN; charset=US-ASCII I would like to have some function for getting an overview of the variables in a worksheet. Class, dimesions, length, number of missing values,... Guess it wouldn't be that hard to set up such a function, but I guess there are others who have made it already. Or is it already a standard feature in the base package? Any suggestions? Robert Message: 65 Date: Wed, 8 Mar 2006 09:38:08 +0100 From: &qu...