R语言图形初阶

Posted super-yb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了R语言图形初阶相关的知识,希望对你有一定的参考价值。

#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语言图形初阶的主要内容,如果未能解决你的问题,请参考以下文章

R语言系列4:图形初阶

R语言图形初阶

R语言实战——1.3图形初阶

吴裕雄--天生自然 R语言开发学习:图形初阶(续一)

《R语言实战》之 图形初阶(第三章)-- 初识

R语言学习——图形初阶之散点图