Hi,
I have a array like this
data:
1  5
2  2342
3 33
and another
data1:
1 6
2 5
3 7
 when I do rbind(data,data1)
I get not what I want
 they become
1 5
2 2342
3 33
101 6
102 5
103 7




but I want to make the index as increasing one by one.
like
1 ..
2 ..
3 ..
4 ..
5 ..
6 ..

So what command I should use

thank you.

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to