Skip to content
Prev 299613 / 398506 Next

cbind and cbind.data.frame

Short answer: there is a default method used here which returns a matrix. It's defined at the C-level for speed so you don't see it with methods()

Longer: cbind() isn't a regular S3 generic since it has no UseMethod(). Look at WRE and R-Internals (internal generics) for more info. 

Best (and good question!),
Michael
On Jul 9, 2012, at 10:21 PM, James Long <jpl2116 at gmail.com> wrote: