Michael Pearmain <mpearmain <at> google.com> writes: > > Hi All, > I've been having a little trouble using R2HTML and a loop, but can't figure > out where the problem lies, any hints gratefully received. >
.. > library(R2HTML) > HTMLStart(outdir = > file.path("C://Example_work","R_projects","Dynamic_creative"),filename = > "RMDC_mockup",Title="Mock up for RMDC") > > for(group in 1:3){ > paste("summary(z.out.", group, sep = "") > paste("summary(s.out.", group, sep = "") > paste("s.out.",group,"$qi$ev", sep = "") > HTMLplot() > } > HTMLStop() Check documentation on HTMLInsertGraph, and don't forget to change the filename in the loop, otherwise you always see the last file. Dieter ______________________________________________ R-help@r-project.org mailing list 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.