I have a data frame which is all possible permuations of a,b, and c in 'both directions'
df1<-data.frame("x"=c("a","a","b"),"y"=c("b","c","c"),"A"=1:3 ,"B"=4:6,"C"=0,"T"=10:12)
df2<-data.frame("x"=df1$y,"y"=df1$x, "A"=df1$A,"B"=df1$B,"C"=df1$C,"T"=df1$T)
df<-rbind(df1,df2)
x y A B C T
1 a b 1 4 0 10
2 a c 2 5 0 11
3 b c 3 6 0 12
4 b a 1 4 0 10
5 c a 2 5 0 11
6 c b 3 6 0 12
which I want to use to fill a second empty data frame
empty<-data.frame("x"=c("a","c"),"y"=c("b","a"),"A"=0,"T"=0)
x y A T
1 a b 0 0
2 c a 0 0
thereby producing:
filled<-data.frame("x"=c("a","c"),"y"=c("b","a"),"A"=1:2,"T"=10:11)
x y A T
1 a b 1 10
2 c a 2 11
I have tried a for loop without luck
for(i in 1:nrow(empty)
{
if("x" == df$x && "y" == df$y)
{
empty[i,"A"]<-df$A
empty[i,"T"]<-df$T
}
}
and also the answer from a previous post about filling a matrix without any success. Any advice is greatly appreciated.


df? – Ananda Mahto Aug 18 '12 at 13:17df[1:2, c(1, 2, 3, 6)](basic subset by row and column numbers) or thisdf[df$x=="a" | df$x=="b", names(df) %in% c("x", "y", "A", "T")], or better yet, thisdf[df$x %in% c("a", "b"), names(df) %in% c("x", "y", "A", "T")](subsetting with matched values for rows and columns)? – Ananda Mahto Aug 18 '12 at 16:30