I have a list containing 1000 data frames that should be of identical size and structure. Each of the data frames contains 1 row and 8 columns. I am trying to convert this into a single data frame with 1000 rows and 8 columns. When I run the code to do this I get:
dat <- do.call(rbind, b6000)
Error in rbind(deparse.level, ...) :
numbers of columns of arguments do not match
How can I track down this error? Is one of the 1000 data frames within the list not 8 columns long? Thank you for any help.
Here is one of the data frames in the list:
> b6000[["7311 USA"]]
from to m km miles seconds minutes hours
1 7311 USA 19111 USA 1580725 1580.725 982.2625 55211 920.1833 15.33639
>