? stato filtrato un testo allegato il cui set di caratteri non era indicato... Nome: non disponibile URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20081028/0fceb8e8/attachment.pl>
Alessandro <alessandro.montaghi <at> unifi.it> writes:> > but I must processing several and several files and I wish to know the > methodology to create a loop formula.Put your processing in a function, and call it like this datafiles = dir("../raw") for(file in datafiles) { try(ProcessFile(file),FALSE) } Dieter