5

这可能是一个简单的问题,但我无法找到解决方案。

我有以下情节(我正在使用情节 CI,因为我无法用情节()填充点)。

leg<-c("1","2","3","4","5","6","7","8")
Col.rar1<-c(rgb(1,0,0,0.7), rgb(0,0,1,0.7), rgb(0,1,1,0.7),rgb(0.6,0,0.8,0.7),rgb(1,0.8,0,0.7),rgb(0.4,0.5,0.6,0.7),rgb(0.2,0.3,0.2,0.7),rgb(1,0.3,0,0.7))
library(plotrix)
plotCI(test$size,test$Mean, 
pch=c(21), pt.bg=Col.rar1,xlab="",ylab="", ui=test$Mean,li= test$Mean)
legend(4200,400,legend=leg,pch=c(21),pt.bg=Col.rar1, bty="n", cex=1)

在此处输入图像描述

我想创建相同的效果,但用线而不是点(继续线)

有什么建议吗?

4

2 回答 2

21

您有 2 个解决方案:

  1. 使用lines()函数在 (x, y) 位置之间画线。
  2. plottype = "l"同类行一起使用

如果没有可重现的示例,很难展示它,但您可以这样做:

Col.rar1<-c(rgb(1,0,0,0.7), rgb(0,0,1,0.7), rgb(0,1,1,0.7),rgb(0.6,0,0.8,0.7),rgb(1,0.8,0,0.7),rgb(0.4,0.5,0.6,0.7),rgb(0.2,0.3,0.2,0.7),rgb(1,0.3,0,0.7))

x <-  seq(0, 5000, length.out=10)
y <- matrix(sort(rnorm(10*length(Col.rar1))), ncol=length(Col.rar1))
plot(x, y[,1], ylim=range(y), ann=FALSE, axes=T,type="l", col=Col.rar1[1])

lapply(seq_along(Col.rar1),function(i){
  lines(x, y[,i], col=Col.rar1[i])
  points(x, y[,i])  # this is optional
})

在此处输入图像描述

于 2012-12-31T12:16:10.000 回答
4

在生成希望根据某些分组变量连接线的图时,您希望摆脱 base-R 图并检查latticeand ggplot2。Base-R 图在 xy 图中没有简单的“组”概念。

一个简单的lattice例子:

library( lattice )
dat <- data.frame( x=rep(1:5, times=4), y=rnorm(20), gp=rep(1:4,each=5) )
xyplot( y ~ x, dat, group=gp, type='b' )

test如果您有一个类似于您定义的颜色矢量的变量,您应该能够使用类似的东西。

于 2012-12-31T11:42:49.233 回答