R:从段()创建彩色条形图

时间:2014-11-18 16:15:52

标签: r colors plot bar-chart segments

我正在使用segments()函数在循环中绘制数百个图形。这里有一些数据足以创建两个图表。

xy <- structure(list(NAME = structure(c(2L, 2L, 1L, 1L), .Label = c("CISCO", "JOHN"), class = "factor"), ID = c(41L, 41L, 57L, 57L), X_START_YEAR = c(1965L, 1932L, 1998L, 1956L), Y_START_VALUE = c(960L, -45L, 22L, -570L), X_END_YEAR = c(1968L, 1955L, 2002L, 1970L), Y_END_VALUE = c(960L, -45L, 22L, -570L), LC = structure(c(1L, 1L, 2L, 2L), .Label = c("CA", "US"), class = "factor")), .Names = c("NAME", "ID", "X_START_YEAR","Y_START_VALUE", "X_END_YEAR", "Y_END_VALUE", "LC"), class = "data.frame", row.names = c(NA,-4L))
ind <- split(xy,xy$ID)
# Plots
for (i in ind){
  xx = unlist(i[,grep('X_',colnames(i))])
  yy = unlist(i[,grep('Y_',colnames(i))])    
  fname <- paste0(i[1, 'ID'],'.png')
  png(fname, width=1679, height=1165, res=150)
  par(mar=c(6,8,6,5))
  plot(xx,yy,type='n',main=unique(i[,1]), xlab="Time [Years]", ylab="Value [mm]",ylim = range(c(yy,-.5,.5))) 
  i <- i[,-1]
  segments(i[,2],i[,3],i[,4],i[,5],lwd=2)
  points(xx, yy, pch=21, bg='white', cex=0.8)
  abline(h=0, col = "gray60")
  dev.off()
} 

我要做的是将其更改为带有彩色组的条形图(例如,0以上的每个值都是蓝色,0以红色表示)。我已经添加了一个可视化,显示了我想要从一个结果图中实现的内容。

据我所知barplot()函数,我可以使用segments()命令(segments(i[,2],i[,3],i[,4],i[,5])来设置每个条形图的width选项。

我的问题:有没有人知道如何更改此设置以便从我的数据中获取高度命令?我正在寻找baseR的解决方案。

1 个答案:

答案 0 :(得分:1)

您可以使用rect

lapply(ind, function(x) {
  plot(unlist(x[, c(3, 5)]), unlist(x[, c(4, 6)]), type='n', 
       xlab='Time [Years]', ylab='Value [mm]', main=x[1, 1])
  apply(x, 1, function(y) {
    rect(y[3], min(y[4], 0), y[5], max(y[4], 0), 
         col=if(as.numeric(y[4]) < 0) 'red' else 'blue')
    abline(h=0)
  })
})

enter image description here enter image description here