Skip to content
Back to formatted view

Raw Message

Message-ID: <1336688311948-4624852.post@n4.nabble.com>
Date: 2012-05-10T22:18:31Z
From: lunarossa
Subject: Interweaving of two datasets
In-Reply-To: <C931C578911.00000357jrkrideau@inbox.com>

I tried to do using merge, I think now it works (anyway it is your worth), I
wrote:

df1<-read.csv("df1.csv",head=T)
attach(df1)
df2<-read.csv("df2.csv",head=T)
attach(df2)
join<-merge(df1,df2,by.x="name",by.y="name")

Is it correct? Coz I'm very frightened to lose datas or make mistakes 

--
View this message in context: http://r.789695.n4.nabble.com/Interweaving-of-two-datasets-tp4608505p4624852.html
Sent from the R help mailing list archive at Nabble.com.