BARLAS Marios 247554
2015-Dec-08 11:29 UTC
[R] Importing data by targeting in filenames inside a nested list
Hello everyone, So, rookie me is trying to write a smart code, so here's what I'm doing: I have a list of a couple of hundrend files, some of which refer to different experiments. The naming of the file refers to the experiment and the serial number to the topological reference on my sample. Performing my data analysis in 1 file class at a time looks OK, so I'm trying to generalize my code. I figured out I could group them together by performing a pattern read on a nested list, which works for getting the file names and grouping them but then I'm getting some problems when I try to perform the import from the nested list. My code looks like this: # Vector containing file name patterns to be read and grouped together measurement_filenames <- c("*Q_Read_prist*", "*Quasi_Forming*", "*read_set#1*","*Q_Reset_pForm#1*","*read_reset#2*","*quasistatic_set*", "*read_set#2*", "*quasistatic_reset#2*" ) # Create a list of the files to be read in sorted in a natural fashion electrical_meas_files <- lapply(measurement_filenames, function(x) naturalsort(list.files(path, pattern=x))) names(electrical_meas_files) <- measurement_filenames # Perform data import for each element for(i in 1:length(measurement_filenames)) { electrical_meas_raw_data[[i]] <- lapply(electrical_meas_files[[i]], function(x) read.xlsx(file=x, sheetName="Data", header=TRUE, as.data.frame =TRUE, stringsAsFactors = F) ) } My idea is to come up with a nested list of the structure {list of different experiments} {list of all sites where the experiment was run} {set of dataframes with all data for each site} Do I make sense or am I over-complicating the situation ? Any ideas how I could write this piece of code or improve it ? Thanks in advance, Mario
Ivan Calandra
2015-Dec-08 14:47 UTC
[R] Importing data by targeting in filenames inside a nested list
Hi Mario, It is at the limit of my skills so I'm not sure this will be a real solution. But it might help you anyway (and there will be more competent people anyway). What does not make sense to me is why you set the names of your files and then use them to list them with list.files() What don't you just do electrical_meas_files <- list.files(path, pattern) and define a pattern if you don't want to read all of them? For the next step, I don't think you need to lapply() at all; it is already in the loop. I usually prefer loops to lapply() because I find it more intuitive. But your lapply() solution would work as well. So I think that your code is somewhat redundant (but I might have missed something). This should do it: #first define your output data list that will be iteratively filled, this will increase speed electrical_meas_raw_data <- vector(mode="list", length=length(electrical_meas_files)) #then read the files (seq_along() is great) for(i in seq_along(measurement_filenames)){ electrical_meas_raw_data[[i]] <- read.xlsx(file=electrical_meas_files[[i]], sheetName="Data", header=TRUE, as.data.frame =TRUE, stringsAsFactors = F) } HTH, Ivan -- Ivan Calandra, PhD University of Reims Champagne-Ardenne GEGENAA - EA 3795 CREA - 2 esplanade Roland Garros 51100 Reims, France +33(0)3 26 77 36 89 ivan.calandra at univ-reims.fr https://www.researchgate.net/profile/Ivan_Calandra Le 08/12/15 12:29, BARLAS Marios 247554 a ?crit :> Hello everyone, > > So, rookie me is trying to write a smart code, so here's what I'm doing: > > I have a list of a couple of hundrend files, some of which refer to different experiments. > The naming of the file refers to the experiment and the serial number to the topological reference on my sample. > > Performing my data analysis in 1 file class at a time looks OK, so I'm trying to generalize my code. > I figured out I could group them together by performing a pattern read on a nested list, which works for getting the file names and grouping them but then I'm getting some problems when I try to perform the import from the nested list. My code looks like this: > > # Vector containing file name patterns to be read and grouped together > measurement_filenames <- c("*Q_Read_prist*", "*Quasi_Forming*", "*read_set#1*","*Q_Reset_pForm#1*","*read_reset#2*","*quasistatic_set*", "*read_set#2*", "*quasistatic_reset#2*" ) > > # Create a list of the files to be read in sorted in a natural fashion > electrical_meas_files <- lapply(measurement_filenames, function(x) naturalsort(list.files(path, pattern=x))) > names(electrical_meas_files) <- measurement_filenames > > # Perform data import for each element > > for(i in 1:length(measurement_filenames)) > { > electrical_meas_raw_data[[i]] <- lapply(electrical_meas_files[[i]], function(x) read.xlsx(file=x, sheetName="Data", header=TRUE, as.data.frame =TRUE, stringsAsFactors = F) ) > } > > > > My idea is to come up with a nested list of the structure > {list of different experiments} > {list of all sites where the experiment was run} > {set of dataframes with all data for each site} > > > Do I make sense or am I over-complicating the situation ? > > > Any ideas how I could write this piece of code or improve it ? > > Thanks in advance, > Mario > > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >
PIKAL Petr
2015-Dec-10 07:37 UTC
[R] Importing data by targeting in filenames inside a nested list
Hi I did not see any answer so I give it a try. Your approach seems to be OK. However you probably need to polish your code to get the correct part of nested list.> lll<-list(a=rnorm(10), b= list(x=1:10, y<-letters))> lll[[1]][1] -0.1876418 1.5933030 -0.1799642 0.1713959 1.1079227 -0.5885820 [7] -1.1629393 -1.7157378 -1.5088232 -0.1150207> lll[[2]]$x [1] 1 2 3 4 5 6 7 8 9 10 [[2]] [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m" "n" "o" "p" "q" "r" "s" [20] "t" "u" "v" "w" "x" "y" "z"> lll[[2]][[1]][1] 1 2 3 4 5 6 7 8 9 10> lll[[2]][[2]][1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m" "n" "o" "p" "q" "r" "s" [20] "t" "u" "v" "w" "x" "y" "z">Cheers Petr> -----Original Message----- > From: R-help [mailto:r-help-bounces at r-project.org] On Behalf Of BARLAS > Marios 247554 > Sent: Tuesday, December 08, 2015 12:30 PM > To: r-help at r-project.org > Subject: [R] Importing data by targeting in filenames inside a nested > list > > Hello everyone, > > So, rookie me is trying to write a smart code, so here's what I'm > doing: > > I have a list of a couple of hundrend files, some of which refer to > different experiments. > The naming of the file refers to the experiment and the serial number > to the topological reference on my sample. > > Performing my data analysis in 1 file class at a time looks OK, so I'm > trying to generalize my code. > I figured out I could group them together by performing a pattern read > on a nested list, which works for getting the file names and grouping > them but then I'm getting some problems when I try to perform the > import from the nested list. My code looks like this: > > # Vector containing file name patterns to be read and grouped together > measurement_filenames <- c("*Q_Read_prist*", "*Quasi_Forming*", > "*read_set#1*","*Q_Reset_pForm#1*","*read_reset#2*","*quasistatic_set*" > , "*read_set#2*", "*quasistatic_reset#2*" ) > > # Create a list of the files to be read in sorted in a natural fashion > electrical_meas_files <- lapply(measurement_filenames, function(x) > naturalsort(list.files(path, pattern=x))) > names(electrical_meas_files) <- measurement_filenames > > # Perform data import for each element > > for(i in 1:length(measurement_filenames)) > { > electrical_meas_raw_data[[i]] <- lapply(electrical_meas_files[[i]], > function(x) read.xlsx(file=x, sheetName="Data", header=TRUE, > as.data.frame =TRUE, stringsAsFactors = F) ) > } > > > > My idea is to come up with a nested list of the structure > {list of different experiments} > {list of all sites where the experiment was run} > {set of dataframes with all data for each site} > > > Do I make sense or am I over-complicating the situation ? > > > Any ideas how I could write this piece of code or improve it ? > > Thanks in advance, > Mario > > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting- > guide.html > and provide commented, minimal, self-contained, reproducible code.________________________________ Tento e-mail a jak?koliv k n?mu p?ipojen? dokumenty jsou d?v?rn? a jsou ur?eny pouze jeho adres?t?m. Jestli?e jste obdr?el(a) tento e-mail omylem, informujte laskav? neprodlen? jeho odes?latele. Obsah tohoto emailu i s p??lohami a jeho kopie vyma?te ze sv?ho syst?mu. Nejste-li zam??len?m adres?tem tohoto emailu, nejste opr?vn?ni tento email jakkoliv u??vat, roz?i?ovat, kop?rovat ?i zve?ej?ovat. Odes?latel e-mailu neodpov?d? za eventu?ln? ?kodu zp?sobenou modifikacemi ?i zpo?d?n?m p?enosu e-mailu. V p??pad?, ?e je tento e-mail sou??st? obchodn?ho jedn?n?: - vyhrazuje si odes?latel pr?vo ukon?it kdykoliv jedn?n? o uzav?en? smlouvy, a to z jak?hokoliv d?vodu i bez uveden? d?vodu. - a obsahuje-li nab?dku, je adres?t opr?vn?n nab?dku bezodkladn? p?ijmout; Odes?latel tohoto e-mailu (nab?dky) vylu?uje p?ijet? nab?dky ze strany p??jemce s dodatkem ?i odchylkou. - trv? odes?latel na tom, ?e p??slu?n? smlouva je uzav?ena teprve v?slovn?m dosa?en?m shody na v?ech jej?ch n?le?itostech. - odes?latel tohoto emailu informuje, ?e nen? opr?vn?n uzav?rat za spole?nost ??dn? smlouvy s v?jimkou p??pad?, kdy k tomu byl p?semn? zmocn?n nebo p?semn? pov??en a takov? pov??en? nebo pln? moc byly adres?tovi tohoto emailu p??padn? osob?, kterou adres?t zastupuje, p?edlo?eny nebo jejich existence je adres?tovi ?i osob? j?m zastoupen? zn?m?. This e-mail and any documents attached to it may be confidential and are intended only for its intended recipients. If you received this e-mail by mistake, please immediately inform its sender. Delete the contents of this e-mail with all attachments and its copies from your system. If you are not the intended recipient of this e-mail, you are not authorized to use, disseminate, copy or disclose this e-mail in any manner. The sender of this e-mail shall not be liable for any possible damage caused by modifications of the e-mail or by delay with transfer of the email. In case that this e-mail forms part of business dealings: - the sender reserves the right to end negotiations about entering into a contract in any time, for any reason, and without stating any reasoning. - if the e-mail contains an offer, the recipient is entitled to immediately accept such offer; The sender of this e-mail (offer) excludes any acceptance of the offer on the part of the recipient containing any amendment or variation. - the sender insists on that the respective contract is concluded only upon an express mutual agreement on all its aspects. - the sender of this e-mail informs that he/she is not authorized to enter into any contracts on behalf of the company except for cases in which he/she is expressly authorized to do so in writing, and such authorization or power of attorney is submitted to the recipient or the person represented by the recipient, or the existence of such authorization is known to the recipient of the person represented by the recipient.