Re: [R] Fetch and merge from a data set

2013-06-25 Thread arun
HI, Try this: merge(data,data1["NAME"]) A.K. - Original Message - From: Nico Met To: Rui Barradas Cc: R help Sent: Tuesday, June 25, 2013 6:00 AM Subject: Re: [R] Fetch and merge from a merge(dat1["NAME"],dat2) data set Many thanks Rui, However If I want to extract only first colum

Re: [R] Fetch and merge from a data set

2013-06-25 Thread Rainer Schuermann
Is merge( data[1], data1 ) what you want? On Tuesday 25 June 2013 12:00:23 Nico Met wrote: > Many thanks Rui, > > However If I want to extract only first column (data1) from data file, then > how Can I do it? > > Thanks again > > Nico > > > On Tue, Jun 25, 2013 at 11:43 AM, Rui Barradas

Re: [R] Fetch and merge from a data set

2013-06-25 Thread Nico Met
Many thanks Rui, However If I want to extract only first column (data1) from data file, then how Can I do it? Thanks again Nico On Tue, Jun 25, 2013 at 11:43 AM, Rui Barradas wrote: > Hello, > > I'm not sure I understand, but it seems as simple as > > merge(data1, data) > > > Hope this helps

Re: [R] Fetch and merge from a data set

2013-06-25 Thread Rui Barradas
Hello, I'm not sure I understand, but it seems as simple as merge(data1, data) Hope this helps, Rui Barradas Em 25-06-2013 10:34, Nico Met escreveu: Dear all, I would like to fetch a list (data1) of entities from a big data file (data) and merged together. for example: data is the file fro