图形的建立
pdf("mygraph.pdf") #保存为pdf文件
attach(xxx)
plot(xx,xxx) #绘制函数(散点)
abline(lm(xxx~xx)) #最优拟合曲线
title("xxxxxxx")
detach(xxx)
dev.off()
tips
a为截距 ;b为斜率;h为水平线y值;v为水平线x值;coef给出截距和斜率的长度的向量;reg使用coef的对象
lm(formula, data, subset, weights, na.action,
method = “qr”, model = TRUE, x = FALSE, y = FALSE, qr = TRUE,
singular.ok = TRUE, contrasts = NULL, offset, …)
用来建立拟合回归模型
furmula 公式对象 ;
data 包含模型中变量的可选数据框;
subset一个可选向量,制定你和中使用的观察值的子集
weight 权重向量
图形参数
指定符号的参数
参数 | 描述 |
---|---|
pch | 指定绘制点符号 |
cex | 符号大小 |
lty | 指定线条类型 |
lwd | 制定线条宽度 |
plot(x=1:24,pch=1:24)
tips
type
“p” for points,
“l” for lines,
“b” for both,
“c” for the lines part alone of “b”,
“o” for both ‘overplotted’,
“