Skip to content
Prev 2462 / 63424 Next

cbind is not generic as claimed, omits labels where S has them (PR#239)

Ross Ihaka <ihaka@stat.auckland.ac.nz> writes:
I played around with this earlier today. There's nothing special about
dataframes, S does the same with any classed object. I.e.

class(b)<-"my"
cbind.my<-function(...)match.call()

cbind(a,b)

will dispatch cbind.my