[R] managing data

2006-06-17 Thread yohannes alazar
Dear mailing list, may some one be kind to help me solve following problem. I am trying to write a code that will combine two tables x and y. The first columns of both tables are unique identification for the rows. The first column of table X is a sub set of the first column of Y. I need to find

Re: [R] managing data

2006-06-17 Thread Philipp Pagel
On Sat, Jun 17, 2006 at 02:40:47PM +0100, yohannes alazar wrote: Dear mailing list, may some one be kind to help me solve following problem. I am trying to write a code that will combine two tables x and y. The first columns of both tables are unique identification for the rows. The first

Re: [R] managing data

2006-06-17 Thread Neuro LeSuperHéros
Hi Change V1 for the name of the column to be matched on X and Y cbind(X,Y[match(X$V1,Y$V1),]) Neurorox From: yohannes alazar [EMAIL PROTECTED] To: r-help@stat.math.ethz.ch Subject: [R] managing data Date: Sat, 17 Jun 2006 14:40:47 +0100 Dear mailing list, may some one be kind to help me