Displaying 1 result from an estimated 1 matches for "datablockfromdb".
2001 Nov 16
0
Data Structures
...to an array of
lists or perhaps a 'list of lists' (if I choose to include some other
ancillary variables that apply to the global list structure). Of course,
I am trying to do this generically in a function:
for (i in 1:N) {
...
# Get each data block
block <- get.DataBlockFromDb(db,tbl,name);
...
}
where N is of unknown size (depends on the amount of data I am trying to
assimilate) and block is my list object from above. I have tried to make
an array of list objects (like an array of structures in C?) but this
doesn't seem to work. i.e.
block[i] <-...