I\'m trying to initialize a data.frame without any rows. Basically, I want to specify the data types for each column and name them, but not have any rows created as a result
Just declare
table = data.frame()
when you try to rbind the first line it will create the columns
rbind