Hello everyone,
I have this code here, that will import a bunch of files in a loop, but I want the files to append, instead of replace. Can anyone help me with that?
i = length(filenames)
x = 1
while (x < i) {
append(test, test = fromJSON(file = filenames[x]))
x = x+1
}
filenames is the name of the files
and test is what I want the files to append to
That code probably looks weird, but that's because I was getting frustrated and just started randomly (and furiously) typing stuff.
Thanks