Skip to content
Prev 118279 / 398498 Next

Problem with binding data-frames

Junnila, Jouni napsal(a):
Hi,

1. the error has nothing to do with differing lengths of your objects - 
that's what the following warning is about. The error occured because 
your indexing object 'nii' does not exist where R is looking for it.

2. using rbind on dataframes is a bad practice, since the input is 
converted to marices if possible. Use merge() instead.

Petr