标签:style blog color io os 使用 ar sp div
本节内容包括
pdf("mygraph.pdf")#保存pdf 也可以png/jpeg/bmp/tiff/xfig...
attach(mtcars) plot(wt, mpg) abline(lm(mpg-wt)) #求出回归参数,并作出线 title("Regression of MPG on Weight") detach(mtcars)
dev.off()
通常来说,下一幅图像会覆盖上一幅,那么在图像前接dev.new()
dose <- c(20,30,40,45,60)
drugA <- c(16,20,27,40,60)
标签:style blog color io os 使用 ar sp div
原文地址:http://www.cnblogs.com/shyustc/p/4004050.html