Re: [R] Putting a bunch of Excel files as data.frames into a list fails

2016-09-28 Thread jeremiah rounds
Try changing: v_list_of_files[v_file] to: v_list_of_files[[v_file]] Also are you sure you are not generating warnings? For example, l = list() l["iris"] = iris; Also, you can change it to lapply(v_files, function(v_file){...}) Have a good one, Jeremiah On Wed, Sep 28, 2016 at 8:02 AM, wrote:

[R] Putting a bunch of Excel files as data.frames into a list fails

2016-09-28 Thread G . Maubach
Hi All, I need to read a bunch of Excel files and store them in R. I decided to store the different Excel files in data.frames in a named list where the names are the file names of each file (and that is different from the sources as far as I can see): -- cut -- # Sources: # - http://stackove