Skip to content
Prev 44454 / 398526 Next

interesting feature

Svetlana Eden <svetlana.eden at vanderbilt.edu> writes:
It's not the number 11, it is the string "11".

Row names are character strings.  In your original data frame the row
names were "1" and "2" for the first frame and "1" for the second.
The rbind function should not create a duplicate row name so it
prepended a "1" to all the names in the second frame.  That explains
the "11" and "12" in your last example.  They are simply the original
names "1" and "2" with a "1" prepended to them.
Try d["11", 1]