R语言图形初阶

2020-12-13 02:33

阅读:331

标签:cal   rap   dos   tac   detach   plot   语言   apt   highlight   

#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

  

R语言图形初阶

标签:cal   rap   dos   tac   detach   plot   语言   apt   highlight   

原文地址:https://www.cnblogs.com/super-yb/p/11043341.html


评论


亲,登录后才可以留言!