abline(lm(varible1~varible)):加直线,lm为线性模型,线性拟合
绘制多幅图形且保证前面的图形不关闭:
dev.new()
statementsto create graph 1
dev.new()
statementsto create graph 2
etc.
绘图:plot(x,y,type=”b”),type=”b”代表同时绘制点和线
plot参数:pch指定绘制点时使用的符号,取值0-25;cex指定符号的大小;lty指定线条的类型,取值1-6;lwd指定线条宽度。