Full_Name: Paul Louisell
Version: 1.6.0
OS: Windows NT
Submission from: (NULL) (192.249.47.9)
'rbind' does not work properly when one object is a data frame and the other is
a matrix. See the code below; this is copied directly from an R session. It
appears the objects need to be in the same class for rbind to work correctly.
test=matrix(1:25, 5, 5)
test=as.data.frame(test)
test