R语言图形初阶
2020-12-13 02:33
标签:cal rap dos tac detach plot 语言 apt highlight R语言图形初阶 标签:cal rap dos tac detach plot 语言 apt highlight 原文地址:https://www.cnblogs.com/super-yb/p/11043341.html#chapter 3####
attach(mtcars)
plot(wt,mpg)
abline(lm(mpg~wt)) #adds a line of best fit
title("regression of mpg on weight")
detach(mtcars)
pdf("mygraph.pdf")
attach(mtcars)
plot(wt,mpg)
abline(lm(mpg~wt)) #adds a line of best fit
title("regression of mpg on weight")
detach(mtcars)
dev.off()
#3.2 one simple example###
dose
上一篇:python学习第五天
下一篇:winForm窗体最大化的设置