r - 在 R 中用渐变比例填充多边形

标签 r ggplot2 gradient

我想创建一个仪表来可视化一个变量对另一个变量的影响是多还是少。

我构建了一个函数来绘制仪表,并用 3 种不同的颜色填充它。

gg.gauge <- function(pos,breaks=c(0,33,66,100),determinent) {

  require(ggplot2)

  get.poly <- function(a,b,r1=0.5,r2=1.0) {
    th.start <- pi*(1-a/100)
    th.end   <- pi*(1-b/100)
    th       <- seq(th.start,th.end,length=100)
    x        <- c(r1*cos(th),rev(r2*cos(th)))
    y        <- c(r1*sin(th),rev(r2*sin(th)))
    return(data.frame(x,y))
  }
  
  ggplot()+ 
    geom_polygon(data=get.poly(breaks[1],breaks[2]),aes(x,y), fill = "red")+
    geom_polygon(data=get.poly(breaks[2],breaks[3]),aes(x,y), fill = "gold")+
    geom_polygon(data=get.poly(breaks[3],breaks[4]),aes(x,y), fill = "green")+
    geom_polygon(data=get.poly(pos-1,pos+1,0.2),aes(x,y))+
    geom_text(data=as.data.frame(breaks), size=5, fontface="bold", vjust=0,
              aes(x=0.8*cos(pi*(1-    breaks/100)),y=-0.1),label=c('Less','','',"More"))+
        annotate("text",x=0,y=0,label=determinent,vjust=0,size=8,fontface="bold")+
    coord_fixed()+
    theme_bw()+
    theme(axis.text=element_blank(),
          axis.title=element_blank(),
          axis.ticks=element_blank(),
          panel.grid=element_blank(),
          panel.border=element_blank(),
          legend.position = "none") 
}

输出:

enter image description here

我想用渐变色填充它,这样它就可以产生从红色(低)到绿色(高)的渐变效果,而不会出现非常明显的切口。

我尝试使用 scale_fill_grdientn 但没有得到肯定的结果。

谢谢

最佳答案

实现此目的的最简单方法是使用单独的线段而不是多边形。以下面的修改示例为例,我只更改了 get_poly 的定义并使用了 geom_segment 而不是 geom_polygon:

gg.gauge <- function(pos, breaks = c(0, 33, 66, 100), determinent) {
  require(ggplot2)
  get.poly <- function(a, b, r1 = 0.5, r2 = 1.0) {
    th.start <- pi * (1 - a / 100)
    th.end   <- pi * (1 - b / 100)
    th       <- seq(th.start, th.end, length = 1000)
    x        <- r1 * cos(th)
    xend     <- r2 * cos(th)
    y        <- r1 * sin(th)
    yend     <- r2 * sin(th)
    data.frame(x, y, xend, yend)
  }

  ggplot() + 
    geom_segment(data = get.poly(breaks[1],breaks[4]), 
                 aes(x = x, y = y, xend = xend, yend = yend, color = xend)) +
    scale_color_gradientn(colors = c("red", "gold", "green")) +
    geom_segment(data = get.poly(pos - 1, pos + 1, 0.2), aes(x = x, y  =y, xend = xend, yend = yend)) +
    geom_text(data=as.data.frame(breaks), size = 5, fontface = "bold", vjust = 0,
              aes(x = 0.8 * cos(pi * (1 - breaks / 100)),  y = -0.1), label = c('Less', '', '', "More")) +
    annotate("text", x  = 0, y = 0,label=determinent,vjust=0,size=8,fontface="bold")+
    coord_fixed()+
    theme_bw()+
    theme(axis.text=element_blank(),
          axis.title=element_blank(),
          axis.ticks=element_blank(),
          panel.grid=element_blank(),
          panel.border=element_blank(),
          legend.position = "none")
}
gg.gauge(pos = 10, determinent = "Test")

enter image description here

关于r - 在 R 中用渐变比例填充多边形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50042214/

相关文章:

r - R中data.frame中每一列的第N个最小值

CSS 面向 future 的线性渐变

html - Internet Explorer CSS 渐变处理

r - Shiny 的提交按钮不起作用

r - 月份到整数 R

r - 在传单中手动添加图例值

r - 用 direct.labels 标记两个轮廓

r - ggplot2 facet_wrap 与数学表达式

R barplot 旁边和堆叠

使用浏览器的后处理变量的具有颜色位置的 HTML CSS 渐变