I have the following code that produces multiple plots, each in a separate pdf file
myplot <-function(ind,dfList) {
dat <- dfList[[ind]]
detects <- as.numeric(dat$Result2[dat$cens== 0])
pdf(file=paste("Desktop/qqplot_",ind,".pdf",sep = ""))
qqnorm(log(detects), ylab="Ln of uncensored data in ppm", main="Q-Q plot", pch=16)
qqline(log(detects))
dev.off()
}
Plots <- lapply(1:3, myplot , dfList = mydata)
Question 1: This code produces 3 pdf files. The files' labels are 1, 2, and 3. How can insert a code that would relabel each file as plot X, plot Y, plot Z.
Question 2: In my myplot function, the plot's title is Q-Q plot but I would like to change the title correspond to the names of the file. So each plot title should be plot X, plot Y, plot Z.
qqplot_1,qqplot_2, etc. You need to adjust your line of code where you start withpdf(.... Secondly, you can adjust the title of the plot using themain="Whatever you want to say here"argument as referenced above. You'll probably need to usepaste()as you did in the line above to reference a variable / column value... – Chase Apr 20 '12 at 18:02