create an arrow with gradient color

后端 未结 2 1872
臣服心动
臣服心动 2020-12-06 14:04

how can I create an arrow or segment with gradient color using R?

2条回答
  •  自闭症患者
    2020-12-06 14:30

    I think Jim Lemon should be automagically bestowed 10K, maybe even 20K, rep points on SO just by virtue of all his work over the years creating base-graphics solutions. The guy is amazing. Time and again someone will ask for something on Rhelp, and he will whip up a solution. Here's "random rainbow" courtesy of the help page:

    require(plotrix)
    x<-c(0,cumsum(rnorm(99)))
     y<-c(0,cumsum(rnorm(99)))
     xydist<-sqrt(x*x+y*y)
     plot(x,y,main="Random walk plot",xlab="X",ylab="Y",type="n")
     color.scale.lines(x,y,c(1,1,0),0,c(0,1,1),colvar=xydist,lwd=2)
    

    enter image description here

提交回复
热议问题