for(i in 1:N) { load(paste("A",i,".RData",sep="")) }
On 6/25/07, James Anderson <janderson_net at="" yahoo.com=""> wrote:
> Hi,
>
> I have 10 .RData files with names A1.RData, A2.RData, ...,A10.RData.
Is there an automatic way to load those data in a loop so that for
each iteration k, it reads in Ak.RData? I know how to do this for
"save" command so that each iteration, but don't know how to do it
using "load" command.
>
> Thanks a lot!
>
> James
>
>
> ---------------------------------
>
> [[alternative HTML version deleted]]
>
> _______________________________________________
> Bioconductor mailing list
> Bioconductor at stat.math.ethz.ch
> https://stat.ethz.ch/mailman/listinfo/bioconductor
> Search the archives:
http://news.gmane.org/gmane.science.biology.informatics.conductor
>
--
Byron Ellis (byron.ellis at gmail.com)
"Oook" -- The Librarian
Hi James,
James Anderson wrote:
> Hi,
>
> I have 10 .RData files with names A1.RData, A2.RData, ...,A10.RData.
Is there an automatic way to load those data in a loop so that for
each iteration k, it reads in Ak.RData? I know how to do this for
"save" command so that each iteration, but don't know how to do it
using "load" command.
>
This should not be fundamentally different from what you did with
"save":
load(paste("A", k, ".RData", sep=""))
Cheers,
H.
> Thanks a lot!
>
> James
>
>
> ---------------------------------
>
> [[alternative HTML version deleted]]
>
> _______________________________________________
> Bioconductor mailing list
> Bioconductor at stat.math.ethz.ch
> https://stat.ethz.ch/mailman/listinfo/bioconductor
> Search the archives:
http://news.gmane.org/gmane.science.biology.informatics.conductor
Hello,
the argument "file" to the function load can be a usual character
string
in R, so you could construct it using "paste", for example:
for (i in 1:10){
load(paste("A",i,".RData",sep=""))}
Regards,
Joern
James Anderson wrote:
> Hi,
>
> I have 10 .RData files with names A1.RData, A2.RData, ...,A10.RData.
Is there an automatic way to load those data in a loop so that for
each iteration k, it reads in Ak.RData? I know how to do this for
"save" command so that each iteration, but don't know how to do it
using "load" command.
>
> Thanks a lot!
>
> James
>
>