服务热线
178 0020 3020
第一期第六次任务
1. col设置颜色的函数,约有600多种,列出3种常用的,用其表达五种颜色。
R预设调色板---这一系列函数有5个,即:
rainbow
heat.colors
terrain.colors
topo.colors
cm.colors
col=rainbow(5)
col=heat.colors(5)
col=terrain.colors(5)
2. 点线混合图
setwd("D:/R语言学习资料/R group task 6")
getwd()
x<-read.csv("data1.csv",header=F)
png("No.6 task.png")
plot(x,col="red",xlab="keyangou",ylab="R",type="s",font.axis=2,font.lab=2,cex.lab=2,main="I love keyan",bty="l" )
a=seq(2,50,by=0.5)
b=5*sin(a)+20
lines(a,b,col='green',lwd=2)
c=10:50
d<-13*cos(a)-5*cos(2*a)-2*cos(3*a)-cos(6*a)+20
points(d,pch=1,col="blue")
legend(pch=c(-1,-1,1),lty=c(1,1,-1),"topleft",col=c('red','green','blue'),legend=c("point1","line2","point3"))
附件