Displaying 1 result from an estimated 1 matches for "withrbind".
2010 Feb 01
1
problem withrbind function
Hi all,
I am trying to to merge two data.frames(kk and ff)
like
> kk
a b d
1 1 4 7
2 2 5 8
3 3 6 9
> ff
a b d
1 2 5 8
2 3 6 9
3 4 7 1
and
g<-rbind(kk,ff)
is working perfectly and giving results
but if any of the column name changed then its giving
"Error in match.names(clabs, names(xi)) :
names do not match previous names"
like
> kk
a b d
1 1 4 7
2 2 5 8
3 3