Plot a line chart with conditional colors depending on values

前端 未结 3 1529
-上瘾入骨i
-上瘾入骨i 2020-11-30 08:09

I want to plot a line chart. Depending on values it should change its color. What I found is:

plot(sin(seq(from=1, to=10,by=0.1)),type=\"p\", 
       col=ife         


        
相关标签:
3条回答
  • 2020-11-30 08:29

    Use segments instead of lines.

    The segments function will only add to an existing plot. To create a blank plot with the correct axes and limits, first use plot with type="n" to draw "nothing".

    x0 <- seq(1, 10, 0.1)
    colour <- ifelse(sin(seq(from=1, to=10,by=0.1))>0.5,"red","blue")
    
    plot(x0, sin(x0), type="n")
    segments(x0=x0, y0=sin(x0), x1=x0+0.1, y1=sin(x0+0.1), col=colour)
    

    See ?segments for more detail.

    enter image description here

    0 讨论(0)
  • 2020-11-30 08:31

    Here is a little different approach:

    x <- seq(from=1, to=10, by=0.1)
    plot(x,sin(x), col='red', type='l')
    clip(1,10,-1,.5)
    lines(x,sin(x), col='yellow', type='l')
    

    enter image description here

    Note that with this method the curve changes colors at exactly 0.5.

    0 讨论(0)
  • 2020-11-30 08:36

    After you've drawn a line plot, you can color it with segments():

    seq1 <- seq(from=1, to=10, by=0.1)
    values <- sin(seq1)
    s <- seq(length(seq1)-1)
    segments(seq1[s], values[s], seq1[s+1], values[s+1], col=ifelse(values > 0.5, "red", "yellow"))
    

    enter image description here

    0 讨论(0)
提交回复
热议问题