search for: matix

Displaying 20 results from an estimated 36 matches for "matix".

Did you mean: matrix
2008 May 23
1
SVD on a matix
...ection of the matrix on the first three eigen vectors that corresponds to the first three largest eigenvalues). I would like to know how much variance is explained by the first eigenvectors? how can I find that. Thanks for your help -- View this message in context: http://www.nabble.com/SVD-on-a-matix-tp17441337p17441337.html Sent from the R help mailing list archive at Nabble.com.
2012 Jul 05
2
vector entry in matix
...f length 4,... (i know that the matrix enties are strings :)). i'm trying to put some variables into a matrix or data.frame, but i couldn't handle it. is something like that possible in R? thanks for your help! -- View this message in context: http://r.789695.n4.nabble.com/vector-entry-in-matix-tp4635478.html Sent from the R help mailing list archive at Nabble.com.
2005 Jan 21
2
Need help to transform data into co-occurence matix
Dear R experts, I have the data in the following fomat(from some kind of card sorting process) ID Category Card numbers 1 1 1,2,5 1 2 3,4 2 1 1,2 2 2 3 2 3 4,5 I want to transform this data into two co-occurence matrix (one for each ID) -- For ID 1 1 2 3 4 5 1 1 1 0 0 1 2 1 1 0 0 1 3 0 0 1 1 0 4 0 0 1 1 0 5 1
2013 Jan 03
4
Index out SNP position
Dear R experts, I have 2 matix: A& B. I am trying to index B against A - (1) find out B rows that fall between the col 1 and 2 of A& put them into a new vector SNP.I made code as below, but I cannot think of a right way to do it. Could anyone help me with the code? Thanks,Jiang---- A <- matrix(c(35838396,35838674,...
2002 Sep 25
3
WinXP-SP1 breaks profiles...
Just thought you'd like to know that SP1 for Windows XP breaks romaing profiles up to and including 2.2.5. This has been confirmed by MIT at the following link: http://web.mit.edu/swrt/winxp/ See the section "Software Compatiblity Test Matix/Testing SP1" We have found this to be the case as well.... I'm cross-posting this to samba-technical as well....we will work on some traces for you guys.... Some (maybe) helpful messages when logging on are: "The data area passed to a system call is too small" "The sys...
2000 Sep 07
6
Writing a tabel in LaTeX-format
I have a vague recollection of seeing a R-function that will output a table or matix in a format suitable for the tabular enviroment in LaTeX. But I cannot find it. Any hints? Bendix ---------------------- Bendix Carstensen Senior Statistician Steno Diabetes Centre Niels Steensens Vej 2 DK-2820 Gentofte Denmark tel: +45 44 43 87 38 mob: +45 28 25 87 38 fax: +45 44 43 73 13 bxc a...
2017 Jun 01
4
Upper bands and lower bands
...band of fluctuaci?n (exponential decreading) to a linear deacrecing values Imagine: I have a matrix like c(10,9,8,7,6,5,4,3,2,1) The thing is I want two new lines so that the m?ximum value of the new colum on the m?ximum is from 10% to 5% higher and the same lower for the m?nimum the final two matix will be something like c(10+0.10*10,9+0.089*9,8+0.075*8.....,1+0.05*1) c(10-0.10*10,9-0.09*9,8-0.075*8.....,1-0.05*1) What I?m looking for is a function tu calculate de "values, weights" so that including the 10% and 5% and the nunmber of decreasing values, in this case n=10, calculates...
2003 Sep 13
2
what does this error mean?
Dear R-users: I am runing R 1.6.2 with Windows XP. I try to calculate Pearson correlation and Spearman correlation of any pairwise columns of 8000 x 80 data matrix with missing values and randomize the matix 1000 times and calculate this two correlations again. The code bellow for Pearson is working fine but for Spearman got the error bellow for randomized data matrix and R console is stop working: cor (raw2[,i], raw2[,j], use="complete.obs") cor.test (raw2[,i], raw2[,j], method="s...
2005 Jul 09
1
Quantile normalization and NA
Hi, I am new to R, I am doing quantile normalization with a dat matix of 384X124 and I find that while computing the quantile normailzation it introduces 'NA' into some of the cells, can someone help me to overcome this problem ? This is the command that goes like upto g62 for 124 colomns >g1 <- normalize.quantiles(exprs(MSExpr[,1:2])) For a small s...
2012 Mar 15
1
Help with operation on list of matrices
...= list(NULL, c("1", "2"))), matrix(c(0.1, 0.5), 1, 2, dimnames = list(NULL, c("1", "3"))), matrix(c(0.3, 0.7), 1, 2, dimnames = list(NULL, c("2", "5")))) In this example, I'd like to get a single matix with the following values: varname value 1 0.3 (i.e., 0.2 + 0.1) 2 0.7 (i.e., 0.4 + 0.3) 3 0.5 (i.e., 0.5) 5 0.7 (i.e., 0.7) Any help is much appreciated. Regards, Axel. [[alternative HTML version deleted]]
2006 Mar 29
1
lmer multilevel
My question relates to problems that I'm having matching lme and lmer examples in P&B. using Matix 0.995 In the Oxide example in p167-170 I can't get the level 2 coefficient estimates to match the fm1Oxide model in lme is data(Oxide,package="nlme") lme(Thickness~1,Oxide) which I translate in Lmer syntax to fm3Oxide<-lmer(Thickness~ (1|Lot)+(1|Lot:Wafer),data=Oxide) #or...
2007 Aug 16
1
Question on output of vectors from a for loop into a matrix
...xtracting the distances from each point to all others in a vector (the for loop). I can get them all to print and can save each individually to a file, but I cannot get them to be bound into a matrix. Here is the code that I have tried: m<-length(Day.1.flower.coords$x) #31 grid points output.matix<-matrix(0.0,m,m) for(i in 1:m){ dist<-spDistsN1(Day.1.coords.matrix, Day.1.coords.matrix[i,]) dist<-as.vector(dist) output.matrix[i,]<-dist print(dist)} The error message that I get is: Error in output.matrix[i,] <- dist : incorrect number of subscripts on matrix Thanks f...
2017 Jun 02
0
Upper bands and lower bands
...ve a matrix like c(10,9,8,7,6,5,4,3,2,1) Ummm... That is not a matrix. It's a vector. -- Bert > > The thing is I want two new lines so that the m?ximum value of the new > colum on the m?ximum is from 10% to 5% higher and the same lower for the > m?nimum > > the final two matix will be something like > > c(10+0.10*10,9+0.089*9,8+0.075*8.....,1+0.05*1) > c(10-0.10*10,9-0.09*9,8-0.075*8.....,1-0.05*1) > > What I?m looking for is a function tu calculate de "values, weights" so > that including the 10% and 5% and the nunmber of decreasing values, i...
2017 Jun 01
0
Upper bands and lower bands
...ng) to a linear > deacrecing values > > Imagine: I have a matrix like c(10,9,8,7,6,5,4,3,2,1) > > The thing is I want two new lines so that the m?ximum value of the new > colum on the m?ximum is from 10% to 5% higher and the same lower for the > m?nimum > > the final two matix will be something like > > c(10+0.10*10,9+0.089*9,8+0.075*8.....,1+0.05*1) > c(10-0.10*10,9-0.09*9,8-0.075*8.....,1-0.05*1) > > What I?m looking for is a function tu calculate de "values, weights" so > that including the 10% and 5% and the nunmber of decreasing values, i...
2011 Oct 14
1
Selecting multiple vectors from a list of lists of matrices
...<- function (selector) { matrix.list[[selector[1]]][[selector[2]]][selector[3],] } output <- function(var1,var2,var3) { selector <- as.data.frame(rbind(var1,var2,var3)) stack <- do.call('rbind',lapply(selector,FUN=extract)) stack } The object matix.list is the said object consisting of 6 lists containing 7 4x4 matrices each. Var 1 2 and 3 are three vectors of length 8000. My problem that, although this is working, it is really slow. The output is used in a monte carlo simulation with many iterations, so the function is called over and over a...
2006 Mar 29
1
Lmer BLUPS: was(lmer multilevel)
...ou can see that this is the value that is not being added in to the coefficients in lmer() and this accounts for the difference. So, these need to be added in for now. I hope this helps, Harold My question relates to problems that I'm having matching lme and lmer examples in P&B. using Matix 0.995 In the Oxide example in p167-170 I can't get the level 2 coefficient estimates to match the fm1Oxide model in lme is data(Oxide,package="nlme") lme(Thickness~1,Oxide) which I translate in Lmer syntax to fm3Oxide<-lmer(Thickness~ (1|Lot)+(1|Lot:Wafer),data=Oxide) #or...
2017 Jun 02
1
Upper bands and lower bands
..... That is not a matrix. It's a vector. > > -- Bert > > > > > > The thing is I want two new lines so that the m?ximum value of the new > > colum on the m?ximum is from 10% to 5% higher and the same lower for the > > m?nimum > > > > the final two matix will be something like > > > > c(10+0.10*10,9+0.089*9,8+0.075*8.....,1+0.05*1) > > c(10-0.10*10,9-0.09*9,8-0.075*8.....,1-0.05*1) > > > > What I?m looking for is a function tu calculate de "values, weights" so > > that including the 10% and 5% and the n...
2017 Oct 22
3
Syntax for fit.contrast (from package gmodels)
...e simply needs to compute -2.52830-(1.96*0.01085) and -2.52830+(1.96*0.01085). To get the estimate for "regional" one needs to compute intercept + typeregional, i.e. -2.52830 + 0.33788. To get the 95% CI is somewhat more difficult as one needs to use results from the variance-covariance matix, specifically the variance of intercept, the variance of "regional", and the covariance of (intercept,"regional") which involves: var = var(intercept) + var(regional) +2*(covar(intercept,regional)), and then get the SE of the variance SE=sqrt(var) 95% CI = intercept + regio...
2006 Jun 29
11
AJAX Maps
Hi, I would like to know if there is a library that provides an API to support map scrolling, like the one available in google maps. This is, I would like to create a user interface where the user is able to see a small part of a large map. It can then move the view, thus observing another part of the map. Additionally, I would also like to provide a zoom mechanism. Thanks in advance. --
2006 Jun 16
1
Assignemt problem ,,,,,,,,,,,,,,,
  Hello list, i have a very simple question about matrix assignment. i did like this. res<-1:30 dim(res)<-c(5,6) ind<-1:6 now i want to assign the value of this variable ind to first coloumn in matrix res. like res[,1]<-ind but this code is giving error , Actualy i have a for loop and value of ind variable is changing every time ,,total 6 times,,i want to assign every vlaue