码迷,mamicode.com
首页 > 编程语言 > 详细

R语言图形初阶

时间:2019-06-18 09:12:05      阅读:133      评论:0      收藏:0      [点我收藏+]

标签: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<-c(20,30,40,45,60)
drugA<-c(16,20,27,40,60)
drugB<-c(15,18,25,31,40)
plot(dose,drugA,type = "b")

#3.3graphical parameters###
opar<-par(no.readonly = TRUE) 
par(lty=2,pch=17)  
plot(dose,drugA,type = "b")
par(opar) 

plot(dose,drugA,type = "b",lty=2,pch=17)

#3.3.1    

plot(dose,drugA,type = "b",lty=3,lwd=3,pch=20,cex=2,col="lightseagreen")

#3.3.2
colors()
rainbow(10)
sqrt(81)
x<-c(1,2)
underline(x)

  

R语言图形初阶

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

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!