I have let say 4 data sets f1,f2,i1,i2
. I want to cbind()
f1
with i1
and f2
with i2
.
I can use
v1<-cbind(f1,i1)
v2<-cbind(f2,i2)
but I want to do this in some sort of loop.
I know the question is very basic. But after lots of searching I am still unable to find a solution for this.
We can use
Map
tocbind
the corresponding columns of both datasetsto create a
list
of datasets.data